Skip to content

Commit

Permalink
Fix typo in ichar specification, should be [-128; 127]
Browse files Browse the repository at this point in the history
  • Loading branch information
kryksyh authored and lerno committed Jul 28, 2024
1 parent a502897 commit 008bacd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/content/docs/guide/basic-types-and-values.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ between two pointer. For each signed integer type there is a corresponding unsig

| type | signed? | min | max | bits |
|---------|---------|--------|-----------|--------|
| ichar | yes | -128 | 128 | 8 |
| ichar | yes | -128 | 127 | 8 |
| short | yes | -32768 | 32767 | 16 |
| int | yes | -2^31 | 2^31 - 1 | 32 |
| long | yes | -2^63 | 2^63 - 1 | 64 |
Expand Down

0 comments on commit 008bacd

Please sign in to comment.