summary refs log tree commit diff stats
path: root/doc/nimc.rst
diff options
context:
space:
mode:
authorJjp137 <Jjp137@users.noreply.github.com>2019-10-17 20:13:04 -0700
committerJjp137 <Jjp137@users.noreply.github.com>2019-10-22 17:59:12 -0700
commit3ad48069d37d42cc56e48399bb429dc50416e556 (patch)
tree00e592c116b8039210c2563e4b5e4777b8c5fae5 /doc/nimc.rst
parente6d5379b3b0c5ea00ea59b74ed2ec35d2bd0a3da (diff)
downloadNim-3ad48069d37d42cc56e48399bb429dc50416e556.tar.gz
Fix word wrapping
Diffstat (limited to 'doc/nimc.rst')
-rw-r--r--doc/nimc.rst10
1 files changed, 6 insertions, 4 deletions
diff --git a/doc/nimc.rst b/doc/nimc.rst
index 78eeaffec..c59653b34 100644
--- a/doc/nimc.rst
+++ b/doc/nimc.rst
@@ -114,7 +114,8 @@ Level  Description
 =====  ============================================
 0      Minimal output level for the compiler.
 1      Displays compilation of all the compiled files, including those imported
-       by other modules or through the `compile pragma<manual.html#implementation-specific-pragmas-compile-pragma>`_.
+       by other modules or through the `compile pragma
+       <manual.html#implementation-specific-pragmas-compile-pragma>`_.
        This is the default level.
 2      Displays compilation statistics, enumerates the dynamic
        libraries that will be loaded by the final binary and dumps to
@@ -130,9 +131,10 @@ Compile time symbols
 
 Through the ``-d:x`` or ``--define:x`` switch you can define compile time
 symbols for conditional compilation. The defined switches can be checked in
-source code with the `when statement <manual.html#statements-and-expressions-when-statement>`_ and
-`defined proc <system.html#defined,untyped>`_. The typical use of this switch is to
-enable builds in release mode (``-d:release``) where optimizations are
+source code with the `when statement
+<manual.html#statements-and-expressions-when-statement>`_ and
+`defined proc <system.html#defined,untyped>`_. The typical use of this switch is
+to enable builds in release mode (``-d:release``) where optimizations are
 enabled for better performance. Another common use is the ``-d:ssl`` switch to
 activate SSL sockets.