summary refs log tree commit diff stats
path: root/doc/manual/lexing.txt
diff options
context:
space:
mode:
authorAraq <rumpf_a@web.de>2015-04-20 11:44:54 +0200
committerAraq <rumpf_a@web.de>2015-04-20 11:44:54 +0200
commit2b4e233510ed45c924507110e19cc94f1d849125 (patch)
tree6450b1b32d9df8db97bbfb298d6eccfa93656264 /doc/manual/lexing.txt
parent7be092bba59ceadeccff1fd884cfde0d4df92a44 (diff)
parentb4e938ca21ba5ddadb749da21f9d55db99dc9d9c (diff)
downloadNim-2b4e233510ed45c924507110e19cc94f1d849125.tar.gz
Merge branch 'devel' of https://github.com/Araq/Nim into devel
Diffstat (limited to 'doc/manual/lexing.txt')
-rw-r--r--doc/manual/lexing.txt2
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/manual/lexing.txt b/doc/manual/lexing.txt
index e2f006f04..df6d85636 100644
--- a/doc/manual/lexing.txt
+++ b/doc/manual/lexing.txt
@@ -289,7 +289,7 @@ Numerical constants are of a single type and have the form::
   INT32_LIT = INT_LIT ['\''] ('i' | 'I') '32'
   INT64_LIT = INT_LIT ['\''] ('i' | 'I') '64'
 
-  UINT8_LIT = INT_LIT ['\''] ('u' | 'U')
+  UINT_LIT = INT_LIT ['\''] ('u' | 'U')
   UINT8_LIT = INT_LIT ['\''] ('u' | 'U') '8'
   UINT16_LIT = INT_LIT ['\''] ('u' | 'U') '16'
   UINT32_LIT = INT_LIT ['\''] ('u' | 'U') '32'