summary refs log tree commit diff stats
path: root/doc/manual/ffi.txt
diff options
context:
space:
mode:
authordef <dennis@felsin9.de>2015-06-21 21:25:19 +0200
committerdef <dennis@felsin9.de>2015-06-21 21:25:19 +0200
commita7f03e8d46b25ef9210a75d1c09bccbebb9e3842 (patch)
treea1c6e2ce3089b2c5e47427d165df681ad943dda4 /doc/manual/ffi.txt
parent37ff086c86129602c34f660cd4193c9a02273f81 (diff)
downloadNim-a7f03e8d46b25ef9210a75d1c09bccbebb9e3842.tar.gz
Use gender neutral language in documentation
Diffstat (limited to 'doc/manual/ffi.txt')
-rw-r--r--doc/manual/ffi.txt2
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/manual/ffi.txt b/doc/manual/ffi.txt
index 4a4e0316f..bc402b570 100644
--- a/doc/manual/ffi.txt
+++ b/doc/manual/ffi.txt
@@ -107,7 +107,7 @@ Unchecked pragma
 ----------------
 The ``unchecked`` pragma can be used to mark a named array as ``unchecked``
 meaning its bounds are not checked. This is often useful when one wishes to
-implement his own flexibly sized arrays. Additionally an unchecked array is
+implement their own flexibly sized arrays. Additionally an unchecked array is
 translated into a C array of undetermined size:
 
 .. code-block:: nim