| author | |
| committer | |
| log | 420c1994b37a612fc37f011713ea01ee0497739a |
| tree | 1146c3793f830e455cee1d7c2457959220fe82c2 |
| parent | 0a3786d0c9e25b8597d7d348a792bcc9a4d1b9a9 |
| signature |
2 files changed, 2 insertions(+), 2 deletions(-)
doc/langref.html.in+1-1| ... | @@ -7925,7 +7925,7 @@ AddrSpace <- KEYWORD_addrspace LPAREN Expr RPAREN | ... | @@ -7925,7 +7925,7 @@ AddrSpace <- KEYWORD_addrspace LPAREN Expr RPAREN |
| 7925 | # Fn specific | 7925 | # Fn specific |
| 7926 | CallConv <- KEYWORD_callconv LPAREN Expr RPAREN | 7926 | CallConv <- KEYWORD_callconv LPAREN Expr RPAREN |
| 7927 | 7927 | ||
| 7928 | ParamDecl <- doc_comment? (KEYWORD_noalias / KEYWORD_comptime / !KEYWORD_comptime) (IDENTIFIER COLON / !(IDENTIFIER_COLON)) ParamType | 7928 | ParamDecl <- doc_comment? (KEYWORD_noalias / KEYWORD_comptime / !KEYWORD_comptime) (IDENTIFIER COLON / !(IDENTIFIER COLON)) ParamType |
| 7929 | 7929 | ||
| 7930 | ParamType | 7930 | ParamType |
| 7931 | <- KEYWORD_anytype | 7931 | <- KEYWORD_anytype |
lib/std/zig/Parse.zig+1-1| ... | @@ -2947,7 +2947,7 @@ fn parseAddrSpace(p: *Parse) !?Node.Index { | ... | @@ -2947,7 +2947,7 @@ fn parseAddrSpace(p: *Parse) !?Node.Index { |
| 2947 | /// such as in the case of anytype and `...`. Caller must look for rparen to find | 2947 | /// such as in the case of anytype and `...`. Caller must look for rparen to find |
| 2948 | /// out when there are no more param decls left. | 2948 | /// out when there are no more param decls left. |
| 2949 | /// | 2949 | /// |
| 2950 | /// ParamDecl <- doc_comment? (KEYWORD_noalias / KEYWORD_comptime / !KEYWORD_comptime) (IDENTIFIER COLON / !(IDENTIFIER_COLON)) ParamType | 2950 | /// ParamDecl <- doc_comment? (KEYWORD_noalias / KEYWORD_comptime / !KEYWORD_comptime) (IDENTIFIER COLON / !(IDENTIFIER COLON)) ParamType |
| 2951 | /// | 2951 | /// |
| 2952 | /// ParamType | 2952 | /// ParamType |
| 2953 | /// <- KEYWORD_anytype | 2953 | /// <- KEYWORD_anytype |