Merge pull request #4997 from cpunion/fix_intern_typo

typo
This commit is contained in:
Andreas Rumpf
2016-11-05 09:53:38 +01:00
committed by GitHub

View File

@@ -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] =