diff options
author | Andreas Rumpf <rumpf_a@web.de> | 2018-09-28 09:28:31 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-09-28 09:28:31 +0200 |
commit | baccd1ad81fe1407fcfe95222528bf9bdbdaa3eb (patch) | |
tree | 7af4a60c56e5fc4bc12880f82d70eb051d271eaf /doc | |
parent | f7797dc5025d418343c393c89436a435de30aa82 (diff) | |
parent | c0d378c0aa220d4cda29f3990f616eca3685912a (diff) | |
download | Nim-baccd1ad81fe1407fcfe95222528bf9bdbdaa3eb.tar.gz |
Merge pull request #9084 from demotomohiro/fixman
manual: fix typo in 'Pre-defined integer types'
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 08aba2bc0..c898c6c55 100644 --- a/doc/manual.rst +++ b/doc/manual.rst @@ -724,7 +724,7 @@ intXX suffix ``'u`` is of this type. uintXX - additional signed integer types of XX bits use this naming scheme + additional unsigned integer types of XX bits use this naming scheme (example: uint16 is a 16 bit wide unsigned integer). The current implementation supports ``uint8``, ``uint16``, ``uint32``, ``uint64``. Literals of these types have the suffix 'uXX. |