Fix G35 output formatting (#18631)

This commit is contained in:
Keith Bennett 2020-07-12 11:43:52 -07:00 committed by GitHub
parent 2c238e4fc2
commit 56c3deb423
Signed by: GitHub
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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();
}