From 89d3fc852c329596840b8877dc547455e551556d Mon Sep 17 00:00:00 2001 From: Dan Roberts Date: Thu, 7 Feb 2019 15:38:48 -0800 Subject: [PATCH] Typo, last -> first --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 3aa32ef..cc32d0e 100644 --- a/README.md +++ b/README.md @@ -130,7 +130,7 @@ There is no requirement that inputs must be upper or lowercase. - In the first word, find the last instance of a vowel. The first half of the portmanteau will keep every letter of the first word until and **excluding** its last vowel. For example, if the first word is `dreams`, then `a` is the last vowel in this word. The first part of the new portmanteau is `dre`, excluding the `a` -- In the second word, find the first instance of a vowel. The second half of the portmanteau will keep every letter of the second word after and **including** its last vowel. +- In the second word, find the first instance of a vowel. The second half of the portmanteau will keep every letter of the second word after and **including** its first vowel. For example, if the second word is `hopes`, then `o` is the first vowel in this word. The second part of the new portmanteau is `opes`, including the `o` - If there are no vowels found in the first word, _use every letter in the first word_ in the first part of the portmanteau.