Update comment on Tag value assign_mod in Ast.zig

This commit is contained in:
frmdstryr 2023-10-24 21:38:19 -04:00 committed by Veikka Tuominen
parent 6c9d34bce7
commit f30ab46306

View File

@ -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,