From 7375ded8581a6353fcfee913a10c6abd4e3a578e Mon Sep 17 00:00:00 2001 From: Dmitry Sedykh Date: Sun, 17 Aug 2014 23:53:55 +0400 Subject: [PATCH] =?UTF-8?q?=D0=9D=D0=BE=D1=80=D0=BC=D0=B0=D0=BB=D0=B8?= =?UTF-8?q?=D0=B7=D0=BE=D0=B2=D0=B0=D0=BD=20=D0=BF=D1=80=D0=B8=D0=BC=D0=B5?= =?UTF-8?q?=D1=80?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- README.md | 2 +- translit_test.go | 3 ++- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 794a3b7..df63a5d 100644 --- a/README.md +++ b/README.md @@ -24,9 +24,9 @@ tests := []string{ for _, text := range tests { fmt.Println(translit.Ru(text)) } -// Output: // Proverochnaja STROKA dlja transliteracii // CHASCHA // ChaScha // Chascha +// chaSCHA ``` diff --git a/translit_test.go b/translit_test.go index a3d7015..a20f98b 100644 --- a/translit_test.go +++ b/translit_test.go @@ -14,11 +14,12 @@ func ExampleRuTranslit() { "чаЩА", } for _, text := range tests { - fmt.Println(translit.RuTranslit(text)) + fmt.Println(translit.Ru(text)) } // Output: // Proverochnaja STROKA dlja transliteracii // CHASCHA // ChaScha // Chascha + // chaSCHA }