summary refs log tree commit diff stats
diff options
context:
space:
mode:
authorPeter Guld Leth <16867891+kuff@users.noreply.github.com>2022-07-17 00:00:28 +0200
committerGitHub <noreply@github.com>2022-07-17 00:00:28 +0200
commit0d8bec695606a65c5916d0da7fcb0a976a4e1f7b (patch)
tree2a9f44e21ebba8927ce659ff57532e8a4172c0ef
parent8679464e490337b4e814e4e4f81768cd9a8b4146 (diff)
downloadNim-0d8bec695606a65c5916d0da7fcb0a976a4e1f7b.tar.gz
Fix typo in line 456 (#20047)
-rw-r--r--doc/intern.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/intern.md b/doc/intern.md
index 0fd995582..b64db3233 100644
--- a/doc/intern.md
+++ b/doc/intern.md
@@ -454,7 +454,7 @@ could stem from a complex expression:
 A thunk would need to call 'returnsDefaultCC[i]' somehow and that would require
 an *additional* closure generation... Ok, not really, but it requires to pass
 the function to call. So we'd end up with 2 indirect calls instead of one.
-Another much more severe problem which this solution is that it's not GC-safe
+Another much more severe problem with this solution is that it's not GC-safe
 to pass a proc pointer around via a generic `ref` type.