aboutsummaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
authorSean Aubin <sean@proteinqure.com>2023-03-08 13:09:41 -0500
committerSean Aubin <sean@proteinqure.com>2023-03-08 13:36:27 -0500
commit551a36f7c92251e8e035ac9f9f878849af85a459 (patch)
tree56edfc0a0ffe05617f81828a5ace25ac453f2a50
parentf08af9b24280090c599e30a3ee90b4fbfbcb3aaf (diff)
fix allocate example
-rw-r--r--exercises/095_memory_allocation.zig2
1 files changed, 1 insertions, 1 deletions
diff --git a/exercises/095_memory_allocation.zig b/exercises/095_memory_allocation.zig
index ff54edf..057b420 100644
--- a/exercises/095_memory_allocation.zig
+++ b/exercises/095_memory_allocation.zig
@@ -25,7 +25,7 @@
// const ptr = try allocator.create(i32);
// std.debug.print("ptr={*}\n", .{ptr});
//
-// const slice_ptr = try allocator.create(f64, 5);
+// const slice_ptr = try allocator.alloc(f64, 5);
// std.debug.print("ptr={*}\n", .{ptr});
// }