Skip to content

Commit

Permalink
clarify that char may not be unsigned (nim-lang#20308)
Browse files Browse the repository at this point in the history
  • Loading branch information
ringabout authored Sep 6, 2022
1 parent b2c5f6f commit f433d9c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/system.nim
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ type
# 'float64' is now an alias to 'float'; this solves many problems

type
char* {.magic: Char.} ## Built-in 8 bit character type (unsigned).
char* {.magic: Char.} ## Built-in 8 bit character type.
string* {.magic: String.} ## Built-in string type.
cstring* {.magic: Cstring.} ## Built-in cstring (*compatible string*) type.
pointer* {.magic: Pointer.} ## Built-in pointer type, use the `addr`
Expand Down

0 comments on commit f433d9c

Please sign in to comment.