From 17f4d5532ecdf3420bd46117e3f1c2519f6bc390 Mon Sep 17 00:00:00 2001 From: resu-xuniL Date: Sun, 31 May 2026 12:33:25 +0200 Subject: [PATCH] Align instruction exemples with `assert_output` expected --- exercises/practice/secret-handshake/.docs/instructions.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/exercises/practice/secret-handshake/.docs/instructions.md b/exercises/practice/secret-handshake/.docs/instructions.md index d2120b9b..2a201689 100644 --- a/exercises/practice/secret-handshake/.docs/instructions.md +++ b/exercises/practice/secret-handshake/.docs/instructions.md @@ -26,7 +26,7 @@ Let's use the number `9` as an example: That was the last digit, so the final code is: ```plaintext -wink, jump +wink,jump ``` Given the number 26, which is `11010` in binary, we get the following actions: @@ -38,7 +38,7 @@ Given the number 26, which is `11010` in binary, we get the following actions: The secret handshake for 26 is therefore: ```plaintext -jump, double blink +jump,double blink ``` ~~~~exercism/note