summary refs log tree commit diff stats
path: root/lib/pure/strutils.nim
diff options
context:
space:
mode:
Diffstat (limited to 'lib/pure/strutils.nim')
-rwxr-xr-xlib/pure/strutils.nim2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/pure/strutils.nim b/lib/pure/strutils.nim
index 8b64434d8..090ad640c 100755
--- a/lib/pure/strutils.nim
+++ b/lib/pure/strutils.nim
@@ -754,7 +754,7 @@ proc replaceWord*(s, sub: string, by = ""): string {.noSideEffect,
     else:

       add result, substr(s, i, j)

       i = j + 1

-    # copy the rest:

+  # copy the rest:

   add result, substr(s, i)

 

 proc delete*(s: var string, first, last: int) {.noSideEffect,