From 5bc5711f09fdc43649369ce146c6e2f1edf87786 Mon Sep 17 00:00:00 2001 From: "bradley.richins" Date: Thu, 22 Oct 2020 13:38:16 -0600 Subject: [PATCH] Updated README.md https://gitlab.com/bradley.richins/nmslib/-/tree/develop#translate-korvax-to-english-with-korvax2eng https://gitlab.com/bradley.richins/nmslib/-/tree/develop#translate-english-to-korvax-with-eng2korvax --- README.md | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 43c6adb..c939cbe 100644 --- a/README.md +++ b/README.md @@ -104,12 +104,12 @@ This function takes only 1 parameter and returns a string **Example:** ```golang -fmt.Println(Korvax2Eng("eapoluch")) +fmt.Println(Translate{"KIHTYOMOLES"}.Kor2Eng()) ``` Output: -``emergency`` +``CONTRABAND`` ### Translate English to Korvax with Eng2Korvax() @@ -120,12 +120,13 @@ This function takes only 1 parameter and returns a string **Example:** ```golang -fmt.Println(Eng2Korvax("emergency")) +korvax := Translate{"Contraband"} +fmt.Println(korvax.Eng2Kor()) ``` Output: -``eapoluch`` +``Zelidovoso`` ## License [MIT](COPYING)