summary refs log tree commit diff stats
path: root/lib/system.nim
diff options
context:
space:
mode:
authorAraq <rumpf_a@web.de>2014-08-29 00:56:34 +0200
committerAraq <rumpf_a@web.de>2014-08-29 00:56:34 +0200
commit6d40288bb832da8b1912a0ddbbc65bf865e28131 (patch)
tree519767414bfdd375a24af5c5ecd408e44d465f22 /lib/system.nim
parentbe813d205f6a2d53334f11b4d2e2d88965a5c13f (diff)
downloadNim-6d40288bb832da8b1912a0ddbbc65bf865e28131.tar.gz
renamed Byte to byte
Diffstat (limited to 'lib/system.nim')
-rw-r--r--lib/system.nim2
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)]