summary refs log tree commit diff stats
diff options
context:
space:
mode:
authorJuan Carlos <JuanCarlospaco@gmail.com>2020-11-14 15:43:31 -0300
committerJuan Carlos <JuanCarlospaco@gmail.com>2020-11-14 15:43:31 -0300
commit9ab1a86b5bfb8f5647b9f9cb4ab48a5b5eb55707 (patch)
treea90b124a4e47634575c62f23b03bb5d7551dbea2
parent3cebae492e61ccbb29cfc38fbaa1f54270dfeb8a (diff)
downloadNim-9ab1a86b5bfb8f5647b9f9cb4ab48a5b5eb55707.tar.gz
Fix #15806
-rw-r--r--doc/manual.rst5
1 files changed, 3 insertions, 2 deletions
diff --git a/doc/manual.rst b/doc/manual.rst
index 0656dfa76..6dfff55a6 100644
--- a/doc/manual.rst
+++ b/doc/manual.rst
@@ -317,8 +317,9 @@ Stropping
 ---------
 
 `Stropping <https://en.wikipedia.org/wiki/Stropping_(syntax)>`_
-allows the same letter sequence to be used both as a keyword and as an identifier,
-this simplifies parsing and FFI with languages where that identifier is not a reserved keyword.
+allows the same letter sequence to be used both as a keyword and as an identifier, this simplifies parsing and
+`FFI <https://en.wikipedia.org/wiki/Foreign_function_interface>`_
+with languages where that identifier is not a reserved keyword.
 For example, allowing a variable named `if` without clashing with the keyword `if`.
 In Nim, this is achieved via backticks, allowing any reserved word to be used as an identifier.