diff options
author | Andreas Rumpf <rumpf_a@web.de> | 2016-06-07 19:54:58 +0200 |
---|---|---|
committer | Andreas Rumpf <rumpf_a@web.de> | 2016-06-07 19:54:58 +0200 |
commit | dc33b7d7e925ce9b95c9800ed9ccbc0281949c01 (patch) | |
tree | 25513b1da8711a7cb1adcd96d9a99b42f69ea13f | |
parent | 21263f6689330b6620a078c2b95adfafc4a05a40 (diff) | |
parent | 2f1e8f11c2734a1a2594a548e046fc841aaf2d6b (diff) | |
download | Nim-dc33b7d7e925ce9b95c9800ed9ccbc0281949c01.tar.gz |
Merge pull request #4293 from abudden/docfix
Fixed a couple of links.
-rw-r--r-- | doc/backends.txt | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/backends.txt b/doc/backends.txt index 343af09ed..5846cce9b 100644 --- a/doc/backends.txt +++ b/doc/backends.txt @@ -110,8 +110,8 @@ interface <manual.html#foreign-function-interface>`_ mainly through the `importc pragma <manual.html#importc-pragma>`_. The ``importc`` pragma is the *generic* way of making backend symbols available in Nim and is available in all the target backends (JavaScript too). The C++ or Objective-C backends -have their respective `ImportCpp <nimc.html#importcpp-pragma>`_ and -`ImportObjC <nimc.html#importobjc-pragma>`_ pragmas to call methods from +have their respective `ImportCpp <manual.html#implementation-specific-pragmas-importcpp-pragma>`_ and +`ImportObjC <manual.html#implementation-specific-pragmas-importobjc-pragma>`_ pragmas to call methods from classes. Whenever you use any of these pragmas you need to integrate native code into |