Merge pull request 'Fixed typo: "you will wish" -> "you wish"' (#455) from xaviii/exercises:xaviii-typo into main

Reviewed-on: https://codeberg.org/ziglings/exercises/pulls/455
This commit is contained in:
Chris Boesch
2026-06-21 12:49:02 +02:00
+1 -1
View File
@@ -1,6 +1,6 @@
// //
// As with integers, you can pass a pointer to a struct when you // As with integers, you can pass a pointer to a struct when you
// will wish to modify that struct. Pointers are also useful when // wish to modify that struct. Pointers are also useful when
// you need to store a reference to a struct (a "link" to it). // you need to store a reference to a struct (a "link" to it).
// //
// const Vertex = struct{ x: u32, y: u32, z: u32 }; // const Vertex = struct{ x: u32, y: u32, z: u32 };