Skip to content

Commit

Permalink
fix whileStatement documentation
Browse files Browse the repository at this point in the history
  • Loading branch information
Axel Ricard authored and WebFreak001 committed Apr 8, 2024
1 parent ddddc86 commit f44d631
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/dparse/parser.d
Original file line number Diff line number Diff line change
Expand Up @@ -8226,7 +8226,7 @@ class Parser
* Parses a WhileStatement
*
* $(GRAMMAR $(RULEDEF whileStatement):
* $(LITERAL 'while') $(LITERAL '$(LPAREN)') $(RULE expression) $(LITERAL '$(RPAREN)') $(RULE declarationOrStatement)
* $(LITERAL 'while') $(LITERAL '$(LPAREN)') $(RULE ifCondition) $(LITERAL '$(RPAREN)') $(RULE declarationOrStatement)
* ;)
*/
WhileStatement parseWhileStatement()
Expand Down

0 comments on commit f44d631

Please sign in to comment.