Skip to content

Commit 2415fc2

Browse files
[create-pull-request] automated change (#543)
Co-authored-by: BillWagner <[email protected]>
1 parent 3d84d39 commit 2415fc2

File tree

1 file changed

+6
-3
lines changed

1 file changed

+6
-3
lines changed

standard/grammar.md

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -404,11 +404,13 @@ fragment PP_Or_Expression
404404
;
405405
406406
fragment PP_And_Expression
407-
: PP_Equality_Expression (PP_Whitespace? '&&' PP_Whitespace? PP_Equality_Expression)*
407+
: PP_Equality_Expression (PP_Whitespace? '&&' PP_Whitespace?
408+
PP_Equality_Expression)*
408409
;
409410
410411
fragment PP_Equality_Expression
411-
: PP_Unary_Expression (PP_Whitespace? ('==' | '!=') PP_Whitespace? PP_Unary_Expression)*
412+
: PP_Unary_Expression (PP_Whitespace? ('==' | '!=') PP_Whitespace?
413+
PP_Unary_Expression)*
412414
;
413415
414416
fragment PP_Unary_Expression
@@ -1593,7 +1595,8 @@ yield_statement
15931595
15941596
// Source: §13.2 Compilation units
15951597
compilation_unit
1596-
: extern_alias_directive* using_directive* global_attributes? namespace_member_declaration*
1598+
: extern_alias_directive* using_directive* global_attributes?
1599+
namespace_member_declaration*
15971600
;
15981601
15991602
// Source: §13.3 Namespace declarations

0 commit comments

Comments
 (0)