diff options
author | Araq <rumpf_a@web.de> | 2015-09-09 09:39:28 +0200 |
---|---|---|
committer | Araq <rumpf_a@web.de> | 2015-09-09 09:39:48 +0200 |
commit | ca9c1968d8fc26bb1d2e9700fab2e94932bc0696 (patch) | |
tree | 50bd9731ab9f14487a52b56f4613df1afa63b085 | |
parent | d5c5fd425f0dbbfddd35a7fff27f377cd9392903 (diff) | |
download | Nim-ca9c1968d8fc26bb1d2e9700fab2e94932bc0696.tar.gz |
fixes typo
-rw-r--r-- | compiler/writetracking.nim | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/writetracking.nim b/compiler/writetracking.nim index 38258b07a..141b496c1 100644 --- a/compiler/writetracking.nim +++ b/compiler/writetracking.nim @@ -200,7 +200,7 @@ proc deps(w: var W; n: PNode) = proc possibleAliases(w: var W; result: var seq[ptr TSym]) = # this is an expensive fixpoint iteration. We could speed up this analysis - # by a smarter data-structure but we wait until prolifing shows us it's + # by a smarter data-structure but we wait until profiling shows us it's # expensive. Usually 'w.assignments' is small enough. var alreadySeen = initIntSet() template addNoDup(x) = |