From 6e11dfd03c6bb3167d706eb38c66820554e78106 Mon Sep 17 00:00:00 2001 From: Metallifax Date: Sat, 19 Feb 2022 00:48:26 -0400 Subject: [PATCH] [Card Games]: instructions.md - removed extra "the" in #7 Bonus Round Rules --- exercises/concept/card-games/.docs/instructions.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/exercises/concept/card-games/.docs/instructions.md b/exercises/concept/card-games/.docs/instructions.md index 0820eb55f0..3b60d0b6fe 100644 --- a/exercises/concept/card-games/.docs/instructions.md +++ b/exercises/concept/card-games/.docs/instructions.md @@ -103,7 +103,7 @@ False Every 11th hand in Black Joe is a bonus hand with a bonus rule: if the last card you draw is a Jack, you double its value. Implement a function `maybe_double_last()` that takes a hand and checks if the last card is a Jack (11). - If the the last card **is** a Jack (11), double its value before returning the hand. + If the last card **is** a Jack (11), double its value before returning the hand. ```python >>> hand = [5, 9, 11]