Explorar el Código

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
SmallRoomLabs hace 8 años
padre
commit
ef080c0841
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. 1 1
      docs/api-guides/romconsole.rst

+ 1 - 1
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*