aboutsummaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
authorhippietrail <hippietrail@noreply.codeberg.org>2024-05-25 11:25:09 +0000
committerhippietrail <hippietrail@noreply.codeberg.org>2024-05-25 11:25:09 +0000
commit6223dc0f83cb903ad259aacfb4eb2e4e50eab9b0 (patch)
treea8481a10a6eb21ae05c91d69ed9d18b2c325d4ed
parent776316e60ba6b9500969c3d0b6f63865af3cb92d (diff)
Verbs agree with the head of the noun phrase, not the closest noun
the result...are passed→the result...is passed the number...vary→the number...varies
-rw-r--r--exercises/099_formatting.zig4
1 files changed, 2 insertions, 2 deletions
diff --git a/exercises/099_formatting.zig b/exercises/099_formatting.zig
index 1952c5e..4b64209 100644
--- a/exercises/099_formatting.zig
+++ b/exercises/099_formatting.zig
@@ -45,7 +45,7 @@
// output. Escape sequences can also be written one after the
// other, e.g. "\n\n" will cause two line feeds.
//
-// By the way, the result of these escape sequences are passed
+// By the way, the result of these escape sequences is passed
// directly to the terminal program. Other than translating them
// into control codes, escape sequences have nothing to do with
// Zig. Zig knows nothing about "line feeds" or "tabs" or
@@ -95,7 +95,7 @@
// ...
//
// Without string formatting, this would be a more challenging
-// assignment because the number of digits in the numbers vary
+// assignment because the number of digits in the numbers varies
// from 1 to 3. But formatting can help us with that.
//
const std = @import("std");