aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/exercises/105_threading2.zig
diff options
context:
space:
mode:
authorChris Boesch <chrboesch@noreply.codeberg.org>2024-03-28 20:53:46 +0000
committerChris Boesch <chrboesch@noreply.codeberg.org>2024-03-28 20:53:46 +0000
commitba4709b20f5d1ad1e1962db41d59b5e7f7c03fea (patch)
tree0baf6477de6a26197602f1474fe810e653697fef /exercises/105_threading2.zig
parent20919722ff6dc43a6b22ed58282acd1168a4ec6c (diff)
parente06cdc0b70778765edc4804457812552e71d38cd (diff)
Merge pull request 'fix typo' (#70) from i69 into main
Reviewed-on: https://codeberg.org/ziglings/exercises/pulls/70
Diffstat (limited to 'exercises/105_threading2.zig')
-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 1330999..c85f801 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?
//