From 36afa4873448243b8315875634f2da2b7babbebc Mon Sep 17 00:00:00 2001 From: Vincent De Comarmond Date: Mon, 10 Jun 2024 08:12:51 +0200 Subject: [PATCH] Minor fix to instructions.md Incorrect example in Rule 3 (see `test-pig-latin.bats`) is misleading and can cause confusion. Fixed this. --- exercises/pig-latin/instructions.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/exercises/pig-latin/instructions.md b/exercises/pig-latin/instructions.md index 2c7577377a..a9645ac236 100644 --- a/exercises/pig-latin/instructions.md +++ b/exercises/pig-latin/instructions.md @@ -33,7 +33,7 @@ If a word starts with zero or more consonants followed by `"qu"`, first move tho For example: -- `"quick"` -> `"ickqu"` -> `"ay"` (starts with `"qu"`, no preceding consonants) +- `"quick"` -> `"ickqu"` -> `"ickquay"` (starts with `"qu"`, no preceding consonants) - `"square"` -> `"aresqu"` -> `"aresquay"` (starts with one consonant followed by `"qu`") ## Rule 4