diff options
author | Varriount <Varriount@users.noreply.github.com> | 2015-04-12 23:56:03 -0400 |
---|---|---|
committer | Varriount <Varriount@users.noreply.github.com> | 2015-04-12 23:56:03 -0400 |
commit | 6c78f1a43d256c7d5e936d87946ae0edf35ddecb (patch) | |
tree | aa432193d5c26a769c352c019f85187ff2832044 | |
parent | 28ecf72f79efa55f48b4ecd7cbe4ca29ccaa0f95 (diff) | |
parent | 0f8a6cbbe4f4b56792913af8a9a5467605d6002c (diff) | |
download | Nim-6c78f1a43d256c7d5e936d87946ae0edf35ddecb.tar.gz |
Merge pull request #2531 from endragor/lexing-doc-typo
Fix typo in lexing.txt: UINT8_LIT -> UINT_LIT
-rw-r--r-- | doc/manual/lexing.txt | 2 |
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' |