aboutsummaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
authorChris Boesch <chrboesch@noreply.codeberg.org>2023-10-22 12:24:28 +0000
committerChris Boesch <chrboesch@noreply.codeberg.org>2023-10-22 12:24:28 +0000
commit890fe8e1c4cf540b81adcfe641128682455007b9 (patch)
tree3637ed24278d855beba5c2179a56ae4b9f136731
parentfe65ff343f4eea810146a62dbb0fc3e331548083 (diff)
parent2feeb282a98e5c0434b72632624689387959bbc4 (diff)
Merge pull request 'fixed typos' (#17) from typos into mainv0.11.0
Reviewed-on: https://codeberg.org/ziglings/exercises/pulls/17
-rw-r--r--exercises/094_c_math.zig2
-rw-r--r--patches/patches/054_manypointers.patch6
-rw-r--r--patches/patches/094_c_math.patch6
3 files changed, 7 insertions, 7 deletions
diff --git a/exercises/094_c_math.zig b/exercises/094_c_math.zig
index 3815cb0..e650f6e 100644
--- a/exercises/094_c_math.zig
+++ b/exercises/094_c_math.zig
@@ -18,7 +18,7 @@
const std = @import("std");
const c = @cImport({
- // What do wee need here?
+ // What do we need here?
???
});
diff --git a/patches/patches/054_manypointers.patch b/patches/patches/054_manypointers.patch
index 9570295..bed7162 100644
--- a/patches/patches/054_manypointers.patch
+++ b/patches/patches/054_manypointers.patch
@@ -1,6 +1,6 @@
---- exercises/054_manypointers.zig 2023-10-03 22:15:22.122241138 +0200
-+++ answers/054_manypointers.zig 2023-10-05 20:04:07.086100775 +0200
-@@ -32,7 +32,7 @@
+--- exercises/054_manypointers.zig 2023-10-22 13:59:15.818523309 +0200
++++ answers/054_manypointers.zig 2023-10-22 14:05:24.095241143 +0200
+@@ -33,7 +33,7 @@
// we can CONVERT IT TO A SLICE. (Hint: we do know the length!)
//
// Please fix this line so the print statement below can print it:
diff --git a/patches/patches/094_c_math.patch b/patches/patches/094_c_math.patch
index 7256162..67da7e8 100644
--- a/patches/patches/094_c_math.patch
+++ b/patches/patches/094_c_math.patch
@@ -1,9 +1,9 @@
---- exercises/094_c_math.zig 2023-10-03 22:15:22.125574535 +0200
-+++ answers/094_c_math.zig 2023-10-05 20:04:07.266104147 +0200
+--- exercises/094_c_math.zig 2023-10-22 14:00:02.909379696 +0200
++++ answers/094_c_math.zig 2023-10-22 14:02:46.709025235 +0200
@@ -19,7 +19,7 @@
const c = @cImport({
- // What do wee need here?
+ // What do we need here?
- ???
+ @cInclude("math.h");
});