Updated & parameters

This commit is contained in:
apense
2015-07-06 23:02:17 -04:00
parent a7f769c6bd
commit af1a5f3244

View File

@@ -1039,7 +1039,7 @@ proc `&` * (x: string, y: char): string {.
##
## .. code-block:: Nim
## assert("ab" & 'c' == "abc")
proc `&` * (x: char, y: char): string {.
proc `&` * (x, y: char): string {.
magic: "ConStrStr", noSideEffect, merge.}
## Concatenates `x` and `y` into a string
##