summaryrefslogtreecommitdiffstatshomepage
path: root/exercises
diff options
context:
space:
mode:
authorGeorgy Trush <lkitjdp@gmail.com>2021-09-04 19:00:03 +0300
committerGeorgy Trush <lkitjdp@gmail.com>2021-09-04 19:00:03 +0300
commitf9e2da67f45d9901738ea6791cb7b19f23194f34 (patch)
treeaf26b646dacb6074f580774bb8ff20945987971a /exercises
parent424f3e95f9d44c50ea830635f6cd1970a57fac47 (diff)
Fix exercises 058 and 081 :wrench:
Diffstat (limited to 'exercises')
-rw-r--r--exercises/058_quiz7.zig2
-rw-r--r--exercises/081_anonymous_structs2.zig2
2 files changed, 2 insertions, 2 deletions
diff --git a/exercises/058_quiz7.zig b/exercises/058_quiz7.zig
index 7162078..d903e82 100644
--- a/exercises/058_quiz7.zig
+++ b/exercises/058_quiz7.zig
@@ -191,7 +191,7 @@ const TripItem = union(enum) {
// The Hermit's Notebook is where all the magic happens. A notebook
// entry is a Place discovered on the map along with the Path taken to
// get there and the distance to reach it from the start point. If we
-// find a better Path to reach a Place (lower distance), we update the
+// find a better Path to reach a Place (shorter distance), we update the
// entry. Entries also serve as a "todo" list which is how we keep
// track of which paths to explore next.
const NotebookEntry = struct {
diff --git a/exercises/081_anonymous_structs2.zig b/exercises/081_anonymous_structs2.zig
index 6871cc1..df78713 100644
--- a/exercises/081_anonymous_structs2.zig
+++ b/exercises/081_anonymous_structs2.zig
@@ -41,7 +41,7 @@ pub fn main() void {
fn printCircle(???) void {
print("x:{} y:{} radius:{}\n", .{
circle.center_x,
- circle.centaur_y,
+ circle.center_y,
circle.radius,
});
}