From ef080c0841920c0c73e386be977d445ba5b61049 Mon Sep 17 00:00:00 2001 From: SmallRoomLabs Date: Fri, 9 Feb 2018 13:01:52 +0100 Subject: [PATCH] Remove the THEN keyword from IF. Closes https://github.com/espressif/esp-idf/issue/1606 Both the TinyBasicPlus and the ESP32 variant don't use the THEN keyword in a IF statement --- docs/api-guides/romconsole.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/api-guides/romconsole.rst b/docs/api-guides/romconsole.rst index 37fd5694ed..d33ca00005 100644 --- a/docs/api-guides/romconsole.rst +++ b/docs/api-guides/romconsole.rst @@ -44,7 +44,7 @@ Expressions, Math Control ------- -- IF expression THEN statement - *perform statement if expression is true* +- IF expression statement - *perform statement if expression is true* - FOR variable = start TO end - *start for block* - FOR variable = start TO end STEP value - *start for block with step* - NEXT - *end of for block*