Merge pull request 'minor typos' (#343) from typos into main

Reviewed-on: https://codeberg.org/ziglings/exercises/pulls/343
This commit is contained in:
Chris Boesch 2026-01-04 14:35:07 +01:00
commit 6212297335
3 changed files with 5 additions and 5 deletions

View File

@ -86,7 +86,7 @@ that if you update one, you may need to also update the other.
### Version Changes ### 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-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-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) * *2025-09-03* zig 0.16.0-dev.164 - changes in reader, see [#25077](https://github.com/ziglang/zig/pull/25077)

View File

@ -2,8 +2,8 @@
// Oh no, this is supposed to print "Hello world!" but it needs // Oh no, this is supposed to print "Hello world!" but it needs
// your help. // your help.
// //
// Zig functions are private by default but the main() function // Zig functions are private by default, but the main() function
// should be public. // must be public.
// //
// A function is made public with the "pub" statement like so: // A function is made public with the "pub" statement like so:
// //

View File

@ -1,5 +1,5 @@
--- exercises/001_hello.zig 2023-10-03 22:15:22.122241138 +0200 --- exercises/001_hello.zig 2026-01-04 14:04:52.752848018 +0100
+++ answers/001_hello.zig 2023-10-05 20:04:06.846096282 +0200 +++ answers/001_hello.zig 2026-01-04 14:04:54.209877278 +0100
@@ -16,6 +16,6 @@ @@ -16,6 +16,6 @@
// //
const std = @import("std"); const std = @import("std");