aboutsummaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
authorChris Boesch <chrboesch@noreply.codeberg.org>2024-06-08 16:32:54 +0000
committerChris Boesch <chrboesch@noreply.codeberg.org>2024-06-08 16:32:54 +0000
commit99c9c42ff2b9749e3036b922dd4952bc989be68c (patch)
treed81ea56d728cee104060c143b6f7ca9d01039a5f
parent5c9b9bdc343f8960b16ac6d219274759396cfe64 (diff)
parent7f78701d199be38809303d26b29d8a636cbcd201 (diff)
Merge pull request 'Verbs agree with the head of the noun phrase, not the closest noun' (#98) from hippietrail/exercises:grammar into main
Reviewed-on: https://codeberg.org/ziglings/exercises/pulls/98
-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");