diff options
author | Jakob Kaivo <jkk@ung.org> | 2023-11-14 13:09:35 -0500 |
---|---|---|
committer | Jakob Kaivo <jkk@ung.org> | 2023-11-14 13:09:35 -0500 |
commit | a425f8aea7920f7e37ad1c892a10908fb869a016 (patch) | |
tree | 4a1160e657158615c585b15e35530f6d14a4ad49 | |
parent | 79551f5c04d20990e64b26bf577f70eeaeb38652 (diff) |
fix spelling
-rw-r--r-- | src/_assert.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/_assert.h b/src/_assert.h index 4c71f2f6..edf3add0 100644 --- a/src/_assert.h +++ b/src/_assert.h @@ -32,7 +32,7 @@ struct __constraint_info _ci = {0}; \ _ci.func = __func__; \ __stdlib.constraint_handler("Undefined behavior: " \ - "Paramater " #_n " must be representable as a " #_type \ + "Parameter " #_n " must be representable as a " #_type \ " or be equal to " #_sentinel, &_ci, ERANGE); \ } else if (_n < _min || _n > _max) { \ struct __constraint_info _ci = {0}; \ |