Skip to content

Commit

Permalink
Update import version in example
Browse files Browse the repository at this point in the history
  • Loading branch information
qluana7 authored Oct 26, 2021
1 parent 4738be7 commit 532dc5f
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
### Assemble, Disassemble Hangul

```ts
import { Assembler } from "https://deno.land/x/hangul@1.0.0/mod.ts"
import { Assembler } from "https://deno.land/x/hangul@1.2.0/mod.ts"

const hello = Assembler.assemble(['', '', '', '', '', '']);

Expand All @@ -32,7 +32,7 @@ const dishello = Assembler.disassemble("안녕하세요");
**Note : This is not a translation. This'll assemble after converting according to the QWERTY keyboard**

```ts
import { Hangul } from "https://deno.land/x/hangul@1.0.0/mod.ts"
import { Hangul } from "https://deno.land/x/hangul@1.2.0/mod.ts"

console.log(Hangul.engToKor("dkssud tprP!"));
// log : 안녕 세계!
Expand All @@ -44,7 +44,7 @@ console.log(Hangul.korToEng("안녕 세계!"));
### Build hangul with initial, neutral and final

```ts
import { HangulBuilder } from "https://deno.land/x/hangul@1.0.0/mod.ts"
import { HangulBuilder } from "https://deno.land/x/hangul@1.2.0/mod.ts"

const builder1 = new HangulBuilder();

Expand Down

0 comments on commit 532dc5f

Please sign in to comment.