fix wrong word-wrap in tunknown_named_parameter

This commit is contained in:
narimiran
2020-10-09 14:55:20 +02:00
parent 991902e286
commit d6c8a91b72

View File

@@ -10,7 +10,8 @@ proc rsplit(s: string; sep: string; maxsplit: int = -1): seq[string]
first type mismatch at position: 2
required type for sep: string
but expression '{':'}' is of type: set[char]
proc rsplit(s: string; seps: set[char] = Whitespace; maxsplit: int = -1): seq[string]
proc rsplit(s: string; seps: set[char] = Whitespace; maxsplit: int = -1): seq[
string]
first type mismatch at position: 3
unknown named parameter: maxsplits
@@ -22,6 +23,5 @@ expression: rsplit("abc:def", {':'}, maxsplits = 1)
# bug #8043
import strutils
"abc:def".rsplit({':'}, maxsplits = 1)