diff options
author | narimiran <narimiran@disroot.org> | 2021-03-31 13:45:14 +0200 |
---|---|---|
committer | narimiran <narimiran@disroot.org> | 2021-03-31 13:45:14 +0200 |
commit | 0be7f854ed0327c3c2c75e682eddab2b502538bb (patch) | |
tree | d9c8e990570b105e792ac4952a7e4dc2fb5df600 /doc/manual.rst | |
parent | d3529d0d5afb4d30bd7bdcbc49ff77fd5e67ed39 (diff) | |
download | Nim-0be7f854ed0327c3c2c75e682eddab2b502538bb.tar.gz |
[ci skip] correct indentation this time
Diffstat (limited to 'doc/manual.rst')
-rw-r--r-- | doc/manual.rst | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/doc/manual.rst b/doc/manual.rst index 1fe554437..b1aae2669 100644 --- a/doc/manual.rst +++ b/doc/manual.rst @@ -6156,12 +6156,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 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 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 |