summary refs log tree commit diff stats
path: root/doc/backends.txt
diff options
context:
space:
mode:
authorAraq <rumpf_a@web.de>2014-10-02 02:33:59 +0200
committerAraq <rumpf_a@web.de>2014-10-02 02:33:59 +0200
commit2c1f3f75f5d37db810113cf37e1b38c3b7b09ee7 (patch)
tree70b805d8f0e4d62c2e84384d605c084661dd5334 /doc/backends.txt
parente9dec2feedc25afd8af8fc3db3131ffbb4b284a7 (diff)
downloadNim-2c1f3f75f5d37db810113cf37e1b38c3b7b09ee7.tar.gz
manual split up into multiple files; documented the new concurrency system
Diffstat (limited to 'doc/backends.txt')
-rw-r--r--doc/backends.txt8
1 files changed, 4 insertions, 4 deletions
diff --git a/doc/backends.txt b/doc/backends.txt
index 307f141b2..eb16217cd 100644
--- a/doc/backends.txt
+++ b/doc/backends.txt
@@ -103,7 +103,7 @@ component?).
 
 
 Nim code calling the backend
---------------------------------
+----------------------------
 
 Nim code can interface with the backend through the `Foreign function
 interface <manual.html#foreign-function-interface>`_ mainly through the
@@ -211,7 +211,7 @@ javascript, you should see the value ``10``. In JavaScript the `echo proc
 
 
 Backend code calling Nim
----------------------------
+------------------------
 
 Backend code can interface with Nim code exposed through the `exportc
 pragma <manual.html#exportc-pragma>`_. The ``exportc`` pragma is the *generic*
@@ -235,7 +235,7 @@ Nim code.
 
 
 Nim invocation example from C
-~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
+~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
 
 Create a ``fib.nim`` file with the following content:
 
@@ -291,7 +291,7 @@ use ``-ldl`` too to link in required dlopen functionality.
 
 
 Nim invocation example from JavaScript
-~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
+~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
 
 Create a ``mhost.html`` file with the following content: