From c3162b489a5f742e7eb4df96bd14367a84833445 Mon Sep 17 00:00:00 2001 From: dawidsip Date: Fri, 16 Feb 2024 21:01:29 +0100 Subject: [PATCH] Update instructions.md At the end of Step 2 and Step 4 there was a sentence "The program must also report any values that are out of range.' As this information, being served twice, sreamed redundant , I think it would be better to leave it only for Step 4, and remove it from Step 2. --- exercises/practice/say/.docs/instructions.md | 2 -- 1 file changed, 2 deletions(-) diff --git a/exercises/practice/say/.docs/instructions.md b/exercises/practice/say/.docs/instructions.md index fb4a6dfb98..ad3d347782 100644 --- a/exercises/practice/say/.docs/instructions.md +++ b/exercises/practice/say/.docs/instructions.md @@ -30,8 +30,6 @@ Implement breaking a number up into chunks of thousands. So `1234567890` should yield a list like 1, 234, 567, and 890, while the far simpler `1000` should yield just 1 and 0. -The program must also report any values that are out of range. - ## Step 3 Now handle inserting the appropriate scale word between those chunks.