diff options
author | Araq <rumpf_a@web.de> | 2014-08-29 00:56:34 +0200 |
---|---|---|
committer | Araq <rumpf_a@web.de> | 2014-08-29 00:56:34 +0200 |
commit | 6d40288bb832da8b1912a0ddbbc65bf865e28131 (patch) | |
tree | 519767414bfdd375a24af5c5ecd408e44d465f22 /lib/system.nim | |
parent | be813d205f6a2d53334f11b4d2e2d88965a5c13f (diff) | |
download | Nim-6d40288bb832da8b1912a0ddbbc65bf865e28131.tar.gz |
renamed Byte to byte
Diffstat (limited to 'lib/system.nim')
-rw-r--r-- | lib/system.nim | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/system.nim b/lib/system.nim index 1de9e23c7..082b3ad40 100644 --- a/lib/system.nim +++ b/lib/system.nim @@ -308,7 +308,7 @@ when not defined(JS) and not defined(NimrodVM): include "system/hti" type - Byte* = uint8 ## this is an alias for ``uint8``, that is an unsigned + byte* = uint8 ## this is an alias for ``uint8``, that is an unsigned ## int 8 bits wide. Natural* = range[0..high(int)] |