diff options
Diffstat (limited to 'doc/manual.rst')
-rw-r--r-- | doc/manual.rst | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/doc/manual.rst b/doc/manual.rst index 6afc10473..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. @@ -5592,12 +5592,12 @@ via ``{.experimental: "caseStmtMacros".}``. ``match`` macros are subject to overload resolution. First the ``case``'s selector expression is used to determine which ``match`` -macro to call. To this macro is then the complete ``case`` statement -body is passed and the macro is evaluated. +macro to call. To this macro is then passed the complete ``case`` +statement body and the macro is evaluated. In other words, the macro needs to transform the full ``case`` statement but only the statement's selector expression is used to determine which -``macro`` to call. +macro to call. Special Types @@ -6442,12 +6442,12 @@ avoid ambiguity when there are multiple modules with the same path. There are two pseudo directories: 1. ``std``: The ``std`` pseudo directory is the abstract location of Nim's standard - library. For example, the syntax ``import std / strutils`` is used to unambiguously - refer to the standard library's ``strutils`` module. +library. For example, the syntax ``import std / strutils`` is used to unambiguously +refer to the standard library's ``strutils`` module. 2. ``pkg``: The ``pkg`` pseudo directory is used to unambiguously refer to a Nimble - package. However, for technical details that lie outside of the scope of this document - its semantics are: *Use the search path to look for module name but ignore the standard - library locations*. In other words, it is the opposite of ``std``. +package. However, for technical details that lie outside of the scope of this document +its semantics are: *Use the search path to look for module name but ignore the standard +library locations*. In other words, it is the opposite of ``std``. From import statement |