diff options
author | Ridho Pratama <p.ridho@yahoo.co.id> | 2019-10-04 00:38:37 +0700 |
---|---|---|
committer | Andreas Rumpf <rumpf_a@web.de> | 2019-10-03 19:38:37 +0200 |
commit | 678775601a2a18b681bc71dc986d230e2771845d (patch) | |
tree | c9f2cd4cc24888e4949fed411aff66a8e48c1948 /doc | |
parent | 73c8391fd3f1f8b789348548f33b2d0ee52c6a75 (diff) | |
download | Nim-678775601a2a18b681bc71dc986d230e2771845d.tar.gz |
Fixed sizeOf to sizeof (#12347)
Diffstat (limited to 'doc')
-rw-r--r-- | doc/manual.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/manual.rst b/doc/manual.rst index 5116b3bda..f7e1c939b 100644 --- a/doc/manual.rst +++ b/doc/manual.rst @@ -3546,7 +3546,7 @@ Nonoverloadable builtins The following builtin procs cannot be overloaded for reasons of implementation simplicity (they require specialized semantic checking):: - declared, defined, definedInScope, compiles, sizeOf, + declared, defined, definedInScope, compiles, sizeof, is, shallowCopy, getAst, astToStr, spawn, procCall Thus they act more like keywords than like ordinary identifiers; unlike a |