diff options
author | Yuta Yamada <cokesboy@gmail.com> | 2016-02-11 20:38:51 -0800 |
---|---|---|
committer | Yuta Yamada <cokesboy@gmail.com> | 2016-02-11 20:38:51 -0800 |
commit | bd635880614ae3b06e824f394a16663853ffa597 (patch) | |
tree | 7022ca6a75e2a5b611a69a1c1f5a5d4a7be24add | |
parent | e5145cc7b66937ddfdc5a811158332726112fe3d (diff) | |
download | Nim-bd635880614ae3b06e824f394a16663853ffa597.tar.gz |
needs needs -> needs
-rw-r--r-- | doc/manual/ffi.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/manual/ffi.txt b/doc/manual/ffi.txt index f9056b159..f08be6ad3 100644 --- a/doc/manual/ffi.txt +++ b/doc/manual/ffi.txt @@ -127,7 +127,7 @@ Produces roughly this C code: } MySeq; The bounds checking done at compile time is not disabled for now, so to access -``s.data[C]`` (where ``C`` is a constant) the array's index needs needs to +``s.data[C]`` (where ``C`` is a constant) the array's index needs to include ``C``. The base type of the unchecked array may not contain any GC'ed memory but this |