From 51bf67e5d78ec35b447e2c62cb8635310691792b Mon Sep 17 00:00:00 2001 From: mikysett Date: Mon, 17 Oct 2022 18:08:03 +0100 Subject: [PATCH] docs(pig_latin): small typo fixed --- subjects/pig_latin/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/subjects/pig_latin/README.md b/subjects/pig_latin/README.md index e755611b..c3caed70 100644 --- a/subjects/pig_latin/README.md +++ b/subjects/pig_latin/README.md @@ -7,7 +7,7 @@ Create a **function** which transforms the string passed as an argument into Pig - If a word begins with a vowel, just add "ay" to the end. - If it begins with a consonant, then we take all consonants before the first vowel, move them to the end of the word, and then add "ay" at the end. - If a word starts with a consonant followed by "qu", move it to the end of the word, and then add an "ay" at the end. -- Only the latin vowels will be considered as vowel(aeiou). +- Only the latin vowels will be considered as vowels (aeiou). ### Expected functions