Little spelling fix in unicode module

This commit is contained in:
Dominik Picheta
2017-10-15 13:12:20 +01:00
committed by GitHub
parent e6f0bff6dd
commit 4789aa979d

View File

@@ -285,7 +285,7 @@ proc runeReverseOffset*(s: string, rev:Positive): (int, int) =
proc runeSubStr*(s: string, pos:int, len:int = int.high): string =
## Returns the UTF-8 substring starting at codepoint pos
## with len codepoints. If pos or len is negativ they count from
## with len codepoints. If pos or len is negative they count from
## the end of the string. If len is not given it means the longest
## possible string.
##