From 6d40288bb832da8b1912a0ddbbc65bf865e28131 Mon Sep 17 00:00:00 2001 From: Araq Date: Fri, 29 Aug 2014 00:56:34 +0200 Subject: [PATCH] renamed Byte to byte --- lib/system.nim | 2 +- lib/system/mmdisp.nim | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/system.nim b/lib/system.nim index 1de9e23c7b..082b3ad402 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)] diff --git a/lib/system/mmdisp.nim b/lib/system/mmdisp.nim index 803c1f5c0e..62106c7d75 100644 --- a/lib/system/mmdisp.nim +++ b/lib/system/mmdisp.nim @@ -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