zig

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

commit 619260d94d68bdecdac649fa7b156dc8962a9889 (tree)
parent 95e83afa98c5af89c6e5f40d559eb54c6c31a54e
Author: Robin Voetter <robin@voetter.nl>
Date:   Mon, 20 Sep 2021 02:34:53 +0200

Address Spaces: Fix comments in Ast.zig

Diffstat:
Mlib/std/zig/Ast.zig | 8++++----
1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/lib/std/zig/Ast.zig b/lib/std/zig/Ast.zig @@ -2961,9 +2961,9 @@ pub const Node = struct { type_node: Index, /// Populated if align(A) is present. align_node: Index, - /// Populated if linksection(A) is present. - addrspace_node: Index, /// Populated if addrspace(A) is present. + addrspace_node: Index, + /// Populated if linksection(A) is present. section_node: Index, }; @@ -2995,9 +2995,9 @@ pub const Node = struct { param: Index, /// Populated if align(A) is present. align_expr: Index, - /// Populated if linksection(A) is present. - addrspace_expr: Index, /// Populated if addrspace(A) is present. + addrspace_expr: Index, + /// Populated if linksection(A) is present. section_expr: Index, /// Populated if callconv(A) is present. callconv_expr: Index,