diff options
author | Andreas Rumpf <rumpf_a@web.de> | 2016-11-05 09:53:38 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-11-05 09:53:38 +0100 |
commit | 708b481c42da20449fa14901d5487c9606bd619a (patch) | |
tree | 72185200fd4aa72c7ef3033e63514439394b5a6b | |
parent | d606f6b348690998d67cc6c39beb49c000c93a41 (diff) | |
parent | 3989d8fa790e242b2a507950b417b518171ee840 (diff) | |
download | Nim-708b481c42da20449fa14901d5487c9606bd619a.tar.gz |
Merge pull request #4997 from cpunion/fix_intern_typo
typo
-rw-r--r-- | doc/intern.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/intern.txt b/doc/intern.txt index 05847169f..d0aaa283a 100644 --- a/doc/intern.txt +++ b/doc/intern.txt @@ -459,7 +459,7 @@ This should produce roughly this code: PEnv = ref object x: int # data - proc anon(y: int, c: PClosure): int = + proc anon(y: int, c: PEnv): int = return y + c.x proc add(x: int): tuple[prc, data] = |