diff options
-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) = |