Skip to content

Commit

Permalink
Fix typo "a bitstrings" in instructions
Browse files Browse the repository at this point in the history
  • Loading branch information
codingthat authored Feb 12, 2025
1 parent ad095ee commit 65f605d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion exercises/concept/paint-by-number/.docs/instructions.md
Original file line number Diff line number Diff line change
Expand Up @@ -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>>
Expand Down

0 comments on commit 65f605d

Please sign in to comment.