From 9cef5d255878d56f35272f5d24226e6c769438b8 Mon Sep 17 00:00:00 2001 From: Ricky Hewitt Date: Thu, 31 Oct 2024 00:44:30 +0000 Subject: [PATCH] Update introduction.md Fixed minor typo. --- exercises/concept/secrets/.docs/introduction.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/exercises/concept/secrets/.docs/introduction.md b/exercises/concept/secrets/.docs/introduction.md index a281ec084..132d725f0 100644 --- a/exercises/concept/secrets/.docs/introduction.md +++ b/exercises/concept/secrets/.docs/introduction.md @@ -57,7 +57,7 @@ Otherwise, the result's bit is 0. #### Bitwise OR The bitwise OR (`|`) operator takes two values and performs an OR on each bit. -It compares each bit from the first value with the bit in thes same position from the second value. +It compares each bit from the first value with the bit in the same position from the second value. If either bit is 1, the result's bit is 1. Otherwise, it is 0.