zig

fork of https://codeberg.org/ziglang/zig
Log | Files | Refs | README | LICENSE

commit f30ab46306d7d137ed70bbcb3466c27846833ed3 (tree)
parent 6c9d34bce703b80562d86d08b71a92910fce1e46
Author: frmdstryr <frmdstryr@protonmail.com>
Date:   Tue, 24 Oct 2023 21:38:19 -0400

Update comment on Tag value assign_mod  in  Ast.zig
Diffstat:
Mlib/std/zig/Ast.zig | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/lib/std/zig/Ast.zig b/lib/std/zig/Ast.zig @@ -2978,7 +2978,7 @@ pub const Node = struct { assign_mul, /// `lhs /= rhs`. main_token is op. assign_div, - /// `lhs *= rhs`. main_token is op. + /// `lhs %= rhs`. main_token is op. assign_mod, /// `lhs += rhs`. main_token is op. assign_add,