diff options
author | Dominik Picheta <dominikpicheta@googlemail.com> | 2018-01-12 14:39:05 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-01-12 14:39:05 +0000 |
commit | 430a6c481e53d3c7d9e05c9d6822a3c632cdcecc (patch) | |
tree | cf2ad66f66e73e25d1601289b8df6d3ec6af47c6 | |
parent | ee64dcd728e822991bf96669cbfb192bd8252648 (diff) | |
parent | e7e0648829199531c9665f5168f5eec98c646854 (diff) | |
download | Nim-430a6c481e53d3c7d9e05c9d6822a3c632cdcecc.tar.gz |
Merge pull request #7074 from smt923/patch-1
Update two links in tutorial to point to correct section
-rw-r--r-- | doc/tut1.rst | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/tut1.rst b/doc/tut1.rst index 9e6f1ab3c..f935e7935 100644 --- a/doc/tut1.rst +++ b/doc/tut1.rst @@ -41,7 +41,7 @@ Save this code to the file "greetings.nim". Now compile and run it:: nim compile --run greetings.nim -With the ``--run`` `switch <nimc.html#command-line-switches>`_ Nim +With the ``--run`` `switch <nimc.html#compiler-usage-command-line-switches>`_ Nim executes the file automatically after compilation. You can give your program command line arguments by appending them after the filename:: @@ -58,7 +58,7 @@ To compile a release version use:: By default the Nim compiler generates a large amount of runtime checks aiming for your debugging pleasure. With ``-d:release`` these checks are `turned off and optimizations are turned on -<nimc.html#compile-time-symbols>`_. +<nimc.html#compiler-usage-compile-time-symbols>`_. Though it should be pretty obvious what the program does, I will explain the syntax: statements which are not indented are executed when the program |