diff options
author | reactormonk <hafnersimon@gmail.com> | 2016-02-12 08:31:01 +0100 |
---|---|---|
committer | reactormonk <hafnersimon@gmail.com> | 2016-02-12 08:31:01 +0100 |
commit | 06bd5a61a463a3d361ff77c3858681e664e14937 (patch) | |
tree | c0cd8c381387d18d3c62ca6f0f077be241f22a25 /doc | |
parent | 867285c5a9645679caf9614f2bf0ffce20d40ac5 (diff) | |
parent | bd635880614ae3b06e824f394a16663853ffa597 (diff) | |
download | Nim-06bd5a61a463a3d361ff77c3858681e664e14937.tar.gz |
Merge pull request #3860 from yuutayamada/fix-document
Fix few documentation a typo and old link
Diffstat (limited to 'doc')
-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 |