summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChris Boesch <chrboesch@noreply.codeberg.org>2026-01-04 14:17:27 +0100
committerChris Boesch <chrboesch@noreply.codeberg.org>2026-01-04 14:17:27 +0100
commitf87097ae54f5b5508f71106354cd18d4cb2dc520 (patch)
tree7c1ef5184fad9964336a80450d5d64b5aa5603fe
parent8791b9440a1b3c726997c671cc9b83d14d389bd4 (diff)
minor typos
-rw-r--r--README.md2
-rw-r--r--exercises/001_hello.zig4
-rw-r--r--patches/patches/001_hello.patch4
3 files changed, 5 insertions, 5 deletions
diff --git a/README.md b/README.md
index 49af5ea..c5ccb78 100644
--- a/README.md
+++ b/README.md
@@ -86,7 +86,7 @@ that if you update one, you may need to also update the other.
### Version Changes
-* *2025-12-28 zig 0.16.0-dev.1859 - file system I/O integrated with the std.Io interface, see [#30232](https://codeberg.org/ziglang/zig/pulls/30232)
+* 2025-12-28 zig 0.16.0-dev.1859 - file system I/O integrated with the std.Io interface, see [#30232](https://codeberg.org/ziglang/zig/pulls/30232)
* *2025-11-01* zig 0.16.0-dev.1204 - more changes due to new I/O API, see [#25592](https://github.com/ziglang/zig/pull/25592)
* *2025-09-24* zig 0.16.0-dev.377 - Enable passing file content as args, see [#25228](https://github.com/ziglang/zig/pull/25228)
* *2025-09-03* zig 0.16.0-dev.164 - changes in reader, see [#25077](https://github.com/ziglang/zig/pull/25077)
diff --git a/exercises/001_hello.zig b/exercises/001_hello.zig
index 2d95a10..7f40b92 100644
--- a/exercises/001_hello.zig
+++ b/exercises/001_hello.zig
@@ -2,8 +2,8 @@
// Oh no, this is supposed to print "Hello world!" but it needs
// your help.
//
-// Zig functions are private by default but the main() function
-// should be public.
+// Zig functions are private by default, but the main() function
+// must be public.
//
// A function is made public with the "pub" statement like so:
//
diff --git a/patches/patches/001_hello.patch b/patches/patches/001_hello.patch
index c5aacd8..b3f4a22 100644
--- a/patches/patches/001_hello.patch
+++ b/patches/patches/001_hello.patch
@@ -1,5 +1,5 @@
---- exercises/001_hello.zig 2023-10-03 22:15:22.122241138 +0200
-+++ answers/001_hello.zig 2023-10-05 20:04:06.846096282 +0200
+--- exercises/001_hello.zig 2026-01-04 14:04:52.752848018 +0100
++++ answers/001_hello.zig 2026-01-04 14:04:54.209877278 +0100
@@ -16,6 +16,6 @@
//
const std = @import("std");