summary refs log tree commit diff stats
path: root/lib/pure/unidecode
diff options
context:
space:
mode:
authorAndreas Rumpf <andreas@andreas-laptop>2010-03-14 01:25:25 +0100
committerAndreas Rumpf <andreas@andreas-laptop>2010-03-14 01:25:25 +0100
commit7bf98411b6d4dfd203371b5d2ec0a5ef3a2305df (patch)
tree23f76f650800ca9508e17869cc83fc8061d1f310 /lib/pure/unidecode
parent3dafd6856bfd644e9cf518b36e5bfedc3220a702 (diff)
downloadNim-7bf98411b6d4dfd203371b5d2ec0a5ef3a2305df.tar.gz
version 0.8.8
Diffstat (limited to 'lib/pure/unidecode')
-rwxr-xr-xlib/pure/unidecode/unidecode.nim4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/pure/unidecode/unidecode.nim b/lib/pure/unidecode/unidecode.nim
index a665dd73e..52f9b6b1a 100755
--- a/lib/pure/unidecode/unidecode.nim
+++ b/lib/pure/unidecode/unidecode.nim
@@ -10,7 +10,7 @@
 ## This module is based on Python's Unidecode module by Tomaz Solc, 
 ## which in turn is based on the ``Text::Unidecode`` Perl module by 
 ## Sean M. Burke 
-## (http://search.cpan.org/~sburke/Text-Unidecode-0.04/lib/Text/Unidecode.pm).
+## (http://search.cpan.org/~sburke/Text-Unidecode-0.04/lib/Text/Unidecode.pm ).
 ##
 ## It provides a single proc that does Unicode to ASCII transliterations:
 ## It finds the sequence of ASCII characters that is the closest approximation
@@ -47,7 +47,7 @@ proc unidecode*(s: string): string =
   ## Example: 
   ## 
   ## ..code-block:: nimrod
-  ##   unidecode("\x53\x17\x4E\xB0")
+  ##   unidecode("\\x53\\x17\\x4E\\xB0")
   ##
   ## Results in: "Bei Jing"
   ##
95a6d0e2'>^
b83e7c9 ^

6838c23 ^
b83e7c9 ^






2a09617 ^

feacca3 ^
2a09617 ^
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34