diff options
Diffstat (limited to 'py/grammar.h')
-rw-r--r-- | py/grammar.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/py/grammar.h b/py/grammar.h index ba3c9cc0c7..b1faab79e1 100644 --- a/py/grammar.h +++ b/py/grammar.h @@ -6,7 +6,7 @@ // # single_input is a single interactive statement; // # file_input is a module or sequence of commands read from an input file; // # eval_input is the input for the eval() functions. -// # NB: compound_stmt in single_input is followed by extra NEWLINE! --> not in Micropython +// # NB: compound_stmt in single_input is followed by extra NEWLINE! --> not in Micro Python // single_input: NEWLINE | simple_stmt | compound_stmt // file_input: (NEWLINE | stmt)* ENDMARKER // eval_input: testlist NEWLINE* ENDMARKER |