From 65f605d3a7a043f12c6ea6c5a268a525f5f719c4 Mon Sep 17 00:00:00 2001 From: "Kevin Bloch (@codingthat)" Date: Wed, 12 Feb 2025 18:00:18 +0100 Subject: [PATCH] Fix typo "a bitstrings" in instructions --- exercises/concept/paint-by-number/.docs/instructions.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/exercises/concept/paint-by-number/.docs/instructions.md b/exercises/concept/paint-by-number/.docs/instructions.md index c1c1cb0a1..70d11c081 100644 --- a/exercises/concept/paint-by-number/.docs/instructions.md +++ b/exercises/concept/paint-by-number/.docs/instructions.md @@ -99,7 +99,7 @@ PaintByNumber.drop_first_pixel(picture, color_count) ## 7. Concatenate two pictures -Implement the `PaintByNumber.concat_pictures/2` function. It should take two arguments, two bitstrings. It should return a bitstrings that is the result of prepending the first argument to the second argument. +Implement the `PaintByNumber.concat_pictures/2` function. It should take two arguments, two bitstrings. It should return a bitstring that is the result of prepending the first argument to the second argument. ```elixir picture1 = <<52::6, 51::6>>