renamed Byte to byte

This commit is contained in:
Araq
2014-08-29 00:56:34 +02:00
parent be813d205f
commit 6d40288bb8
2 changed files with 2 additions and 2 deletions

View File

@@ -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)]

View File

@@ -34,7 +34,7 @@ const
type
PPointer = ptr pointer
TByteArray = array[0..1000_0000, Byte]
TByteArray = array[0..1000_0000, byte]
PByte = ptr TByteArray
PString = ptr string