summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlexander Sisco <36649949+devspeare@users.noreply.github.com>2025-02-08 10:07:59 -0800
committerAlexander Sisco <36649949+devspeare@users.noreply.github.com>2025-02-08 13:09:12 -0800
commit596d5e50cadac66bff0d635c38f3993643302adc (patch)
tree88bc0f75842490a6fcc914edd7d9dec4d5009f3e
parent502ac8711e29bae3d0d9e4b1489b6e475369f321 (diff)
format fix
-rw-r--r--exercises/110_bit_manipulation3.zig3
1 files changed, 1 insertions, 2 deletions
diff --git a/exercises/110_bit_manipulation3.zig b/exercises/110_bit_manipulation3.zig
index 620df3f..4ac2032 100644
--- a/exercises/110_bit_manipulation3.zig
+++ b/exercises/110_bit_manipulation3.zig
@@ -89,7 +89,7 @@ pub fn main() !void {
// corresponding bits in the other operand to flip to the opposite value.
// - 0s cause no change.
//
- // The 0s in our bitmask preserve these values
+ // The 0s in our bitmask preserve these values
// -XOR op- ---expanded--- in the output.
// _______________/
// / /
@@ -452,4 +452,3 @@ fn checkAnswer(expected: u4, answer: u4) void {
}
newline();
}
-