diff options
Diffstat (limited to 'lib/pure/unidecode/unidecode.nim')
-rwxr-xr-x | lib/pure/unidecode/unidecode.nim | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/pure/unidecode/unidecode.nim b/lib/pure/unidecode/unidecode.nim index 453e1b289..a302618e3 100755 --- a/lib/pure/unidecode/unidecode.nim +++ b/lib/pure/unidecode/unidecode.nim @@ -56,7 +56,8 @@ proc unidecode*(s: string): string = ## Example: ## ## ..code-block:: nimrod - ## unidecode("\\x53\\x17\\x4E\\xB0") + ## + ## unidecode("\x53\x17\x4E\xB0") ## ## Results in: "Bei Jing" ## |