From f87097ae54f5b5508f71106354cd18d4cb2dc520 Mon Sep 17 00:00:00 2001 From: Chris Boesch Date: Sun, 4 Jan 2026 14:17:27 +0100 Subject: [PATCH] minor typos --- README.md | 2 +- exercises/001_hello.zig | 4 ++-- patches/patches/001_hello.patch | 4 ++-- 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");