aboutsummaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
authorAhmed <a-h-m-e-d@noreply.codeberg.org>2023-11-21 19:09:47 +0200
committerAhmed <a-h-m-e-d@noreply.codeberg.org>2023-11-21 19:09:47 +0200
commit46e3a38dbc9850fa409897ba398a747bce1766bd (patch)
tree4e841b516ea1cb0e4cb640e4ef37e0037c275346
parentf987a06cccc47b79e78203870eac443051002895 (diff)
Fix two minor typos
-rwxr-xr-xci/compat.sh2
-rw-r--r--exercises/064_builtins.zig2
2 files changed, 2 insertions, 2 deletions
diff --git a/ci/compat.sh b/ci/compat.sh
index f5895fd..5a83be7 100755
--- a/ci/compat.sh
+++ b/ci/compat.sh
@@ -1,5 +1,5 @@
#!/bin/bash
-# This script checks that `zig build` will return an useful error message when
+# This script checks that `zig build` will return a useful error message when
# the Zig compiler is not compatible, instead of failing due to a syntax error.
#
# This script should be run on an UNIX system.
diff --git a/exercises/064_builtins.zig b/exercises/064_builtins.zig
index 1d680d8..e91dfbe 100644
--- a/exercises/064_builtins.zig
+++ b/exercises/064_builtins.zig
@@ -58,7 +58,7 @@ pub fn main() void {
// There is a difference between
// - a value, that overflowed at some point and is now corrupted
// - a single operation that overflows and maybe causes subsequent errors
- // In practise we usually notice the overflowed value first and have to work
+ // In practice we usually notice the overflowed value first and have to work
// our way backwards to the operation that caused the overflow.
//
// If there was no overflow at all while adding 5 to a, what value would