Skip to content

Commit

Permalink
Add "ck" phoneme.
Browse files Browse the repository at this point in the history
  • Loading branch information
abadi199 committed Mar 31, 2020
1 parent 2e63046 commit 696595e
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/Phoneme.re
Original file line number Diff line number Diff line change
Expand Up @@ -65,11 +65,12 @@ let pink: list(phoneme) = [r, j, v, y, w];
let th = {sound: "th", image: "", color: Blue, side: Front};
let z = {sound: "z", image: "", color: Blue, side: Front};
let ch = {sound: "ch", image: "", color: Blue, side: Front};
let ck = {sound: "ck", image: "", color: Blue, side: Front};
let qu = {sound: "qu", image: "", color: Blue, side: Front};
let x = {sound: "x", image: "", color: Blue, side: Front};
let ng = {sound: "ng", image: "", color: Blue, side: Front};
let nk = {sound: "nk", image: "", color: Blue, side: Front};
let blue: list(phoneme) = [th, z, ch, qu, x, ng, nk];
let blue: list(phoneme) = [th, z, ch, ck, qu, x, ng, nk];

let phonemes: list(phoneme) = orange @ purple @ yellow @ grey @ pink @ blue;

Expand Down

0 comments on commit 696595e

Please sign in to comment.