Skip to content

Commit f817cd2

Browse files
hippietraildivinetouch
authored andcommitted
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
1 parent 081af92 commit f817cd2

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

exercises/099_formatting.zig

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@
4545
// output. Escape sequences can also be written one after the
4646
// other, e.g. "\n\n" will cause two line feeds.
4747
//
48-
// By the way, the result of these escape sequences are passed
48+
// By the way, the result of these escape sequences is passed
4949
// directly to the terminal program. Other than translating them
5050
// into control codes, escape sequences have nothing to do with
5151
// Zig. Zig knows nothing about "line feeds" or "tabs" or
@@ -95,7 +95,7 @@
9595
// ...
9696
//
9797
// Without string formatting, this would be a more challenging
98-
// assignment because the number of digits in the numbers vary
98+
// assignment because the number of digits in the numbers varies
9999
// from 1 to 3. But formatting can help us with that.
100100
//
101101
const std = @import("std");

0 commit comments

Comments
 (0)