Skip to content

Commit

Permalink
Fixes typo in the exercise instructions
Browse files Browse the repository at this point in the history
  • Loading branch information
stewartmurrie committed Nov 5, 2024
1 parent 6e4d3f3 commit f8fca1a
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions exercises/concept/secrets/.docs/instructions.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

Your friend has just sent you a message with an important secret.
Not wanting to make it easy for others to read it, the message was encrypted by performing a series of bit manipulations.
You will need to write the methods to help decrypt the message.
You will need to write the functions to help decrypt the message.

## 1. Shift back the bits

Expand All @@ -24,7 +24,7 @@ A bit from value should be set to 1 where the bit in the mask is also `1`.
All other bits should be kept unchanged.

```elm
setBits 66 212 --> 64
setBits 66 212 --> 64
```

## 3. Flip specific bits
Expand All @@ -51,4 +51,4 @@ All other bits should be kept unchanged.

```elm
clearBits 2 15 --> 13
```
```

0 comments on commit f8fca1a

Please sign in to comment.