summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChris Boesch <chrboesch@noreply.codeberg.org>2026-06-21 15:31:18 +0200
committerChris Boesch <chrboesch@noreply.codeberg.org>2026-06-21 15:31:18 +0200
commit1ad3534e4d276dfddefc80fcd9a2f1e6c74266d1 (patch)
tree17eec31d0b4113aa7c9101ef1afba8e01eed487f
parent894ebf1a37044cce86a229f48de87133d0859cab (diff)
fixed grammar
-rw-r--r--exercises/108_threading2.zig2
1 files changed, 1 insertions, 1 deletions
diff --git a/exercises/108_threading2.zig b/exercises/108_threading2.zig
index bbf8d78..e1b35ac 100644
--- a/exercises/108_threading2.zig
+++ b/exercises/108_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 digits. But the 8 digits are
+// on the CPU when it comes to a large number of digits. But 8 digits are
// enough for us for now, because we want to understand the principle and
// nothing more, right?
//