diff --git a/Firmware/Marlin_main.cpp b/Firmware/Marlin_main.cpp index 316a79c51..d6602ef87 100755 --- a/Firmware/Marlin_main.cpp +++ b/Firmware/Marlin_main.cpp @@ -3833,16 +3833,16 @@ void process_commands() #### Usage M0 [P] [string] - M1 [P] [S] [string] + M1 [P] [S] [string] #### Parameters - `P` - Expire time, in milliseconds - `S` - Expire time, in seconds - - `string` - An optional message to display on the LCD + - `string` - Must for M1 and optional for M0 message to display on the LCD */ - else if (code_seen_P(PSTR("M0 ")) || code_seen_P(PSTR("M1 "))) { // M0 and M1 - (Un)conditional stop - Wait for user button press on LCD + else if (code_seen_P(PSTR("M0")) || code_seen_P(PSTR("M1 "))) { // M0 and M1 - (Un)conditional stop - Wait for user button press on LCD char *src = strchr_pointer + 2;