diff options
author | Simon Krauter <trustablecode@gmail.com> | 2019-06-13 15:16:38 +0200 |
---|---|---|
committer | Andreas Rumpf <rumpf_a@web.de> | 2019-06-13 15:16:38 +0200 |
commit | e2f99a2026511ca7a1b9d55482e5e10ee692fffe (patch) | |
tree | 9db4c73b963b56b93a80115b934dc8d27c491880 /doc/tut1.rst | |
parent | 165ea4628486476793d774aee011d84183e6fc96 (diff) | |
download | Nim-e2f99a2026511ca7a1b9d55482e5e10ee692fffe.tar.gz |
Update tut1: -d:release does not turn off *allruntime checks off anymore (#11492)
According to https://nim-lang.org/blog/2019/06/06/version-0200-released.html "The -d:release switch now does not disable runtime checks anymore. "
Diffstat (limited to 'doc/tut1.rst')
-rw-r--r-- | doc/tut1.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/tut1.rst b/doc/tut1.rst index 161b4b904..ff53d3f37 100644 --- a/doc/tut1.rst +++ b/doc/tut1.rst @@ -56,7 +56,7 @@ To compile a release version use:: nim c -d:release greetings.nim By default the Nim compiler generates a large amount of runtime checks -aiming for your debugging pleasure. With ``-d:release`` these checks are +aiming for your debugging pleasure. With ``-d:release`` some checks are `turned off and optimizations are turned on <nimc.html#compiler-usage-compile-time-symbols>`_. |