Skip to content

Commit

Permalink
Fix G35 output formatting (MarlinFirmware#18631)
Browse files Browse the repository at this point in the history
  • Loading branch information
thisiskeithb authored and albertogg committed Aug 31, 2020
1 parent 352b970 commit ea4882b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Marlin/src/gcode/bedlevel/G35.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -154,7 +154,7 @@ void GcodeSuite::G35() {

SERIAL_ECHOPAIR("Turn ", tramming_point_name[i],
" ", (screw_thread & 1) == (adjust > 0) ? "Counter-Clockwise" : "Clockwise",
"by ", abs(full_turns), " turns");
" by ", abs(full_turns), " turns");
if (minutes) SERIAL_ECHOPAIR(" and ", abs(minutes), " minutes");
SERIAL_EOL();
}
Expand Down

0 comments on commit ea4882b

Please sign in to comment.