From d9df4ddecf1d03fbed05bd8caff16c98cedf198e Mon Sep 17 00:00:00 2001 From: Helder Barboza <29435727+helderbarboza@users.noreply.github.com> Date: Fri, 19 Jan 2024 18:15:43 +0000 Subject: [PATCH] fix exercise instruction typos --- exercises/concept/secrets/.docs/instructions.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/exercises/concept/secrets/.docs/instructions.md b/exercises/concept/secrets/.docs/instructions.md index 782f3d137..da172a040 100644 --- a/exercises/concept/secrets/.docs/instructions.md +++ b/exercises/concept/secrets/.docs/instructions.md @@ -12,7 +12,7 @@ There will be further steps in the decryption process that assume 0s are inserte Implement the `Secrets.shiftBack` method that takes a value and the number of places to shift and peforms the shift. ```java -Secrets.shiftBack(0b1001, 2);s +Secrets.shiftBack(0b1001, 2); # => 0b0010 ``` @@ -40,7 +40,7 @@ If the bit is 1 in mask, the bit is flipped in the value. All other bits are kept unchanged. ```java -Secrets.flipBits(0b1100, 0b0101) +Secrets.flipBits(0b1100, 0b0101); # => 0b1001 ``` @@ -53,6 +53,6 @@ The bits in the `value` should be set to 0 where the bit in the mask is 1. All other bits should be kept unchanged. ```java -Secrets.applyMask(0b0110, 0b0101); +Secrets.clearBits(0b0110, 0b0101); # => 0b0010 ```