From dce91657041ed240f1635a8b5bef4b762a8f899b Mon Sep 17 00:00:00 2001 From: davhojt Date: Mon, 2 May 2022 14:50:09 +0100 Subject: [PATCH] docs(vowel-dots): correct grammar --- subjects/vowel-dots/README.md | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/subjects/vowel-dots/README.md b/subjects/vowel-dots/README.md index a7c1a998..a834af30 100644 --- a/subjects/vowel-dots/README.md +++ b/subjects/vowel-dots/README.md @@ -2,9 +2,12 @@ ### Instructions -Create a function called vowelDots that receives a string and adds a `.` after -every vowel ('y' is not considered a vowel here) using a regex called `vowels`. +Create a function named `vowelDots` that receives a string. Your function should return a new string with a `.` after every vowel. + +Your RegEx should be stored in a variable named `vowels`. + +> a, e, i, o and u are considered as vowels here. ### Notions -- [github.com/ziishaned/learn-regex#22-character-sets](https://github.com/ziishaned/learn-regex#22-character-sets) +- [RegEx Character Sets](https://github.com/ziishaned/learn-regex#22-character-sets)