diff options
author | Andreas Rumpf <rumpf_a@web.de> | 2015-01-11 01:11:31 +0100 |
---|---|---|
committer | Andreas Rumpf <rumpf_a@web.de> | 2015-01-11 01:11:31 +0100 |
commit | 98b2c7799655b41de0ab07ef918493451220733d (patch) | |
tree | a2d91e425e26fda11eb0bfc2bdecb8c5af836a4d | |
parent | 4c294936284ba3ad1d14e2518ef33d8f5746e3cb (diff) | |
parent | 8fbe671b04fd9a71c6b7e1a6a5e0d08df00603e6 (diff) | |
download | Nim-98b2c7799655b41de0ab07ef918493451220733d.tar.gz |
Merge pull request #1925 from daniel-kullmann/doc-fix2
doc/tut2.txt: Tiny grammar fix
-rw-r--r-- | doc/tut2.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/tut2.txt b/doc/tut2.txt index 2ae0f18f6..30aef02b2 100644 --- a/doc/tut2.txt +++ b/doc/tut2.txt @@ -640,7 +640,7 @@ Macros Macros enable advanced compile-time code transformations, but they cannot change Nim's syntax. However, this is no real restriction because Nim's syntax is flexible enough anyway. Macros have to be implemented in pure Nim -code if `foreign function interface (FFI) +code if the `foreign function interface (FFI) <manual.html#foreign-function-interface>`_ is not enabled in the compiler, but other than that restriction (which at some point in the future will go away) you can write any kind of Nim code and the compiler will run it at compile |