summary refs log tree commit diff stats
diff options
context:
space:
mode:
authorAndreas Rumpf <rumpf_a@web.de>2016-11-05 09:53:38 +0100
committerGitHub <noreply@github.com>2016-11-05 09:53:38 +0100
commit708b481c42da20449fa14901d5487c9606bd619a (patch)
tree72185200fd4aa72c7ef3033e63514439394b5a6b
parentd606f6b348690998d67cc6c39beb49c000c93a41 (diff)
parent3989d8fa790e242b2a507950b417b518171ee840 (diff)
downloadNim-708b481c42da20449fa14901d5487c9606bd619a.tar.gz
Merge pull request #4997 from cpunion/fix_intern_typo
typo
-rw-r--r--doc/intern.txt2
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] =