From cceac13e896049c3fb12b9ac1a2a15b24ef4627d Mon Sep 17 00:00:00 2001 From: BethanyG Date: Thu, 30 Apr 2026 14:32:24 -0700 Subject: [PATCH] Fixed split pairs instructions. --- exercises/concept/black-jack/.docs/instructions.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/exercises/concept/black-jack/.docs/instructions.md b/exercises/concept/black-jack/.docs/instructions.md index e95c5fadb9f..f294d4744ef 100644 --- a/exercises/concept/black-jack/.docs/instructions.md +++ b/exercises/concept/black-jack/.docs/instructions.md @@ -99,7 +99,7 @@ False ## 5. Splitting pairs -If the players first two cards are of the same value, such as two sixes, or a `Q` and `K` a player may choose to treat them as two separate hands. +If the first two cards in a hand are of the same value (_for example, two sixes or a `Q` and `K`_), a player may choose to treat them as two separate hands. This is known as "splitting pairs". Define the `can_split_pairs(, )` function with parameters `card_one` and `card_two`, which are a pair of cards.