summary refs log tree commit diff stats
path: root/doc
diff options
context:
space:
mode:
authorAraq <rumpf_a@web.de>2018-09-27 22:42:12 +0200
committerAraq <rumpf_a@web.de>2018-09-27 22:42:12 +0200
commit017d7f50653bd9ebfb34084b0b10d16ffa282198 (patch)
tree7dd76ad30bdffeb8fe30d223d7a242658ce2d516 /doc
parenta0ec1c1212dfd8df41d3c4fb9237cd9aba7a9d3d (diff)
downloadNim-017d7f50653bd9ebfb34084b0b10d16ffa282198.tar.gz
manual: fix the layout
Diffstat (limited to 'doc')
-rw-r--r--doc/manual.rst10
1 files changed, 5 insertions, 5 deletions
diff --git a/doc/manual.rst b/doc/manual.rst
index 279c28de7..08aba2bc0 100644
--- a/doc/manual.rst
+++ b/doc/manual.rst
@@ -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