Parser - Fixed comment

This commit is contained in:
Emmanuel BENOîT 2023-01-02 20:21:52 +01:00
parent 0290fbc226
commit 549e93e9a9

View file

@ -104,7 +104,8 @@ impl Parser {
/// ``` /// ```
/// statement := expression ";" /// statement := expression ";"
/// statement := "print" expression ";" /// statement := "print" expression ";"
/// statement := declaration ";" /// statement := var_declaration ";"
/// statement := fun_declaration ";"
/// statement := block /// statement := block
/// statement := labelled_loop /// statement := labelled_loop
/// statement := if_statement /// statement := if_statement