aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChris Boesch <[email protected]>2024-03-28 21:33:16 +0100
committerChris Boesch <[email protected]>2024-03-28 21:33:16 +0100
commit86ac326885888c992aa206051220878c4a34579b (patch)
tree36b9d5c80d52db5e3eea5097617ee29e218d421a
parentdabd9a5a0a8d377ed91b16863a6174e898db7a12 (diff)
downloadziglings-86ac326885888c992aa206051220878c4a34579b.tar.xz
ziglings-86ac326885888c992aa206051220878c4a34579b.zip
fix typo
-rw-r--r--exercises/105_threading2.zig2
1 files changed, 1 insertions, 1 deletions
diff --git a/exercises/105_threading2.zig b/exercises/105_threading2.zig
index a211551..ac3cdfb 100644
--- a/exercises/105_threading2.zig
+++ b/exercises/105_threading2.zig
@@ -46,7 +46,7 @@
// 1,000,000,000 partial values. And for each additional digit we have to
// add a zero.
// Even fast computers - and I mean really fast computers - get a bit warmer
-// on the CPU when it comes to really many diggits. But the 8 digits are
+// on the CPU when it comes to really many digits. But the 8 digits are
// enough for us for now, because we want to understand the principle and
// nothing more, right?
//