summaryrefslogtreecommitdiffstatshomepage
path: root/03_assignment.zig
diff options
context:
space:
mode:
Diffstat (limited to '03_assignment.zig')
-rw-r--r--03_assignment.zig4
1 files changed, 2 insertions, 2 deletions
diff --git a/03_assignment.zig b/03_assignment.zig
index 6280833..2c4c15a 100644
--- a/03_assignment.zig
+++ b/03_assignment.zig
@@ -24,7 +24,7 @@ pub fn main() void {
// Perhaps you noticed before that the print function takes two
// parameters. Now it will make more sense: the first parameter
// is a string. The string may contain placeholders '{}', and the
- // second parameter is an anonymous struct (data structure)
- // with values to be printed in place of the placeholders.
+ // second parameter is an "anonymous list literal" (don't worry
+ // about this for now!) with the values to be printed.
std.debug.print("{} {} {}\n", .{n, pi, negative_eleven});
}