diff options
author | Andreas Rumpf <rumpf_a@web.de> | 2016-04-01 12:37:17 +0200 |
---|---|---|
committer | Andreas Rumpf <rumpf_a@web.de> | 2016-04-01 12:37:17 +0200 |
commit | 986b80ece16a9a3454cae80e1d80ffdabc5b732d (patch) | |
tree | 7160f4aa9117c1869d8f164ba894803829d98173 | |
parent | a61d5e466beb8dc5efeb4a96511c8162fe16f38c (diff) | |
parent | 63807a62c6754e58c33b34dfbda84fdc56f0992c (diff) | |
download | Nim-986b80ece16a9a3454cae80e1d80ffdabc5b732d.tar.gz |
Merge pull request #4023 from MrMormon/patch-1
triggering yourself -> yourself triggering
-rw-r--r-- | doc/backends.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/backends.txt b/doc/backends.txt index c7939baec..343af09ed 100644 --- a/doc/backends.txt +++ b/doc/backends.txt @@ -420,7 +420,7 @@ function directly will be able to use it since Nim's garbage collector has not had a chance to run *yet*. This gives you enough time to make a copy for the C side of the program, as calling any further Nim procs *might* trigger garbage collection making the previously returned string garbage. Or maybe you -are `triggering yourself the collection <gc.html>`_. +are `yourself triggering the collection <gc.html>`_. Custom data types |