From 311e79876a32be6b96b8cc2dcec4606c72f9b5e1 Mon Sep 17 00:00:00 2001 From: Ryan Emmons <70683790+the-emmons@users.noreply.github.com> Date: Sun, 4 Feb 2024 17:33:41 -0600 Subject: [PATCH] Fixing typo in the 'Secrets' exercise instructions.md file "decrpyt" -> "decrypt" --- exercises/concept/secrets/.docs/instructions.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/exercises/concept/secrets/.docs/instructions.md b/exercises/concept/secrets/.docs/instructions.md index da172a040..f3e7089b0 100644 --- a/exercises/concept/secrets/.docs/instructions.md +++ b/exercises/concept/secrets/.docs/instructions.md @@ -46,7 +46,7 @@ Secrets.flipBits(0b1100, 0b0101); ## 4. Clear specific bits -Lastly, there are also certain bits that always decrpyt to 0. +Lastly, there are also certain bits that always decrypt to 0. Implement the `Secrets.clearBits` method that takes a value and a mask. The bits in the `value` should be set to 0 where the bit in the mask is 1.