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 }