summary refs log tree commit diff stats
path: root/lib
diff options
context:
space:
mode:
Diffstat (limited to 'lib')
-rw-r--r--lib/system.nim12
1 files changed, 6 insertions, 6 deletions
diff --git a/lib/system.nim b/lib/system.nim
index f5b1c3fe5..ddf2cccb9 100644
--- a/lib/system.nim
+++ b/lib/system.nim
@@ -842,25 +842,25 @@ proc newStringOfCap*(cap: int): string {.
 
 proc `&` * (x: string, y: char): string {.
   magic: "ConStrStr", noSideEffect, merge.}
-  ## Concatinates `x` with `y`
+  ## Concatenates `x` with `y`
   ##
   ## .. code-block:: Nimrod
   ##   assert("ab" & 'c' == "abc")
 proc `&` * (x: char, y: char): string {.
   magic: "ConStrStr", noSideEffect, merge.}
-  ## Concatinates `x` and `y` into a string
+  ## Concatenates `x` and `y` into a string
   ##
   ## .. code-block:: Nimrod
   ##   assert('a' & 'b' == "ab")
 proc `&` * (x, y: string): string {.
   magic: "ConStrStr", noSideEffect, merge.}
-  ## Concatinates `x` and `y`
+  ## Concatenates `x` and `y`
   ##
   ## .. code-block:: Nimrod
   ##   assert("ab" & "cd" == "abcd")
 proc `&` * (x: char, y: string): string {.
   magic: "ConStrStr", noSideEffect, merge.}
-  ## Concatinates `x` with `y`
+  ## Concatenates `x` with `y`
   ##
   ## .. code-block:: Nimrod
   ##   assert('a' & "bc" == "abc")
@@ -877,7 +877,7 @@ proc add*(x: var string, y: char) {.magic: "AppendStrCh", noSideEffect.}
   ##   tmp.add('b')
   ##   assert(tmp == "ab")
 proc add*(x: var string, y: string) {.magic: "AppendStrStr", noSideEffect.}
-  ## Concatinates `x` and `y` in place
+  ## Concatenates `x` and `y` in place
   ##
   ## .. code-block:: Nimrod
   ##   var tmp = ""
@@ -1610,7 +1610,7 @@ proc `@`*[T](a: openArray[T]): seq[T] =
   for i in 0..a.len-1: result[i] = a[i]
 
 proc `&` *[T](x, y: seq[T]): seq[T] {.noSideEffect.} =
-  ## Concatinates two sequences.
+  ## Concatenates two sequences.
   ## Requires copying of the sequences.
   ##
   ## .. code-block:: Nimrod