diff options
author | Araq <rumpf_a@web.de> | 2017-02-17 00:00:39 +0100 |
---|---|---|
committer | Araq <rumpf_a@web.de> | 2017-02-17 00:00:39 +0100 |
commit | 5620e085637fb3b090ce05092a4258427cd3e41a (patch) | |
tree | d8d3e5ee391b59c2cd5c8d5cf95e533a519bcecc /doc | |
parent | bdd9f971e7b1f8c1fde54abdb3032ba697b059bd (diff) | |
download | Nim-5620e085637fb3b090ce05092a4258427cd3e41a.tar.gz |
minor documentation improvements
Diffstat (limited to 'doc')
-rw-r--r-- | doc/manual/pragmas.txt | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/doc/manual/pragmas.txt b/doc/manual/pragmas.txt index 2a276c2e7..af955a3e0 100644 --- a/doc/manual/pragmas.txt +++ b/doc/manual/pragmas.txt @@ -1018,12 +1018,12 @@ the -d/--define option at compile time. The implementation currently provides the following possible options (various others may be added later). -=============== ============================================ -pragma description -=============== ============================================ -intdefine Reads in a build-time define as an integer -strdefine Reads in a build-time define as a string -=============== ============================================ +================= ============================================ +pragma description +================= ============================================ +`intdefine`:idx: Reads in a build-time define as an integer +`strdefine`:idx: Reads in a build-time define as a string +================= ============================================ .. code-block:: nim const FooBar {.intdefine.}: int = 5 |