aboutsummaryrefslogtreecommitdiff
path: root/exercises
diff options
context:
space:
mode:
authorDave Gauer <dave@ratfactor.com>2021-04-26 20:34:41 -0400
committerDave Gauer <dave@ratfactor.com>2021-04-26 20:34:41 -0400
commit98f4f5476a965ccd04fa9b0b3c2e26d60d4a2652 (patch)
treea29942968772ad67ea6cedde7dbed220a006bf5e /exercises
parentcae0fbe0b2ae1d24769d322e4a2b6c46ca3d97d7 (diff)
downloadziglings-98f4f5476a965ccd04fa9b0b3c2e26d60d4a2652.tar.gz
ziglings-98f4f5476a965ccd04fa9b0b3c2e26d60d4a2652.tar.bz2
ziglings-98f4f5476a965ccd04fa9b0b3c2e26d60d4a2652.tar.xz
ziglings-98f4f5476a965ccd04fa9b0b3c2e26d60d4a2652.zip
fix typo in 072 (for #49)
Diffstat (limited to 'exercises')
-rw-r--r--exercises/072_comptime7.zig2
1 files changed, 1 insertions, 1 deletions
diff --git a/exercises/072_comptime7.zig b/exercises/072_comptime7.zig
index c5e04dd..06eb92e 100644
--- a/exercises/072_comptime7.zig
+++ b/exercises/072_comptime7.zig
@@ -51,7 +51,7 @@ pub fn main() void {
}
// ...But it's quite a bit more exciting than it first appears.
// The 'inline while' no longer exists at runtime and neither
- // does anything else not touched by directly by runtime
+ // does anything else not touched directly by runtime
// code. The 'instructions' string, for example, does not
// appear anywhere in the compiled program because it's
// not used by it!