Skip to content

Commit c3c6432

Browse files
committed
🎨 Misc. formatting
1 parent e7c4a86 commit c3c6432

File tree

2 files changed

+3
-3
lines changed
  • Marlin/src/gcode/bedlevel/abl
  • buildroot/share/git

2 files changed

+3
-3
lines changed

Marlin/src/gcode/bedlevel/abl/G29.cpp

+2-2
Original file line numberDiff line numberDiff line change
@@ -409,15 +409,15 @@ G29_TYPE GcodeSuite::G29() {
409409
if (!probe.good_bounds(abl.probe_position_lf, abl.probe_position_rb)) {
410410
if (DEBUGGING(LEVELING)) {
411411
DEBUG_ECHOLNPGM("G29 L", abl.probe_position_lf.x, " R", abl.probe_position_rb.x,
412-
" F", abl.probe_position_lf.y, " B", abl.probe_position_rb.y);
412+
" F", abl.probe_position_lf.y, " B", abl.probe_position_rb.y);
413413
}
414414
SERIAL_ECHOLNPGM("? (L,R,F,B) out of bounds.");
415415
G29_RETURN(false, false);
416416
}
417417

418418
// Probe at the points of a lattice grid
419419
abl.gridSpacing.set((abl.probe_position_rb.x - abl.probe_position_lf.x) / (abl.grid_points.x - 1),
420-
(abl.probe_position_rb.y - abl.probe_position_lf.y) / (abl.grid_points.y - 1));
420+
(abl.probe_position_rb.y - abl.probe_position_lf.y) / (abl.grid_points.y - 1));
421421

422422
#endif // ABL_USES_GRID
423423

buildroot/share/git/mfadd

+1-1
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ REPO=${INFO[2]}
2929

3030
set -e
3131

32-
echo "Adding and fetching $USER..."
32+
echo "Adding and fetching $USER/$REPO..."
3333
git remote add "$USER" "[email protected]:$USER/$REPO.git" >/dev/null 2>&1 || echo "Remote exists."
3434
git fetch "$USER"
3535

0 commit comments

Comments
 (0)