diff options
author | def <dennis@felsin9.de> | 2015-05-18 21:32:29 +0200 |
---|---|---|
committer | def <dennis@felsin9.de> | 2015-05-18 21:34:26 +0200 |
commit | 2076e14a09ea9eb03fd389e1124a7c1847b7d584 (patch) | |
tree | 83581b80f99242f084310bce631f8e18aaeb7bf5 /doc/astspec.txt | |
parent | 51de44be7954a1c3f3499c5a2a6adcaceec33e3f (diff) | |
download | Nim-2076e14a09ea9eb03fd389e1124a7c1847b7d584.tar.gz |
Update ast spec about uint literals
Diffstat (limited to 'doc/astspec.txt')
-rw-r--r-- | doc/astspec.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/astspec.txt b/doc/astspec.txt index 4c27272e2..68bb9f1cd 100644 --- a/doc/astspec.txt +++ b/doc/astspec.txt @@ -23,7 +23,7 @@ contains: case kind: NimNodeKind ## the node's kind of nnkNone, nnkEmpty, nnkNilLit: discard ## node contains no additional fields - of nnkCharLit..nnkInt64Lit: + of nnkCharLit..nnkUInt64Lit: intVal: biggestInt ## the int literal of nnkFloatLit..nnkFloat64Lit: floatVal: biggestFloat ## the float literal |