Merge pull request #3228 from esenapaj/patch-1

Fix spelling
This commit is contained in:
Scott Lahteine
2016-03-25 00:40:51 -07:00
7 changed files with 27 additions and 27 deletions

View File

@ -3084,7 +3084,7 @@ inline void gcode_G28() {
#if ENABLED(DELTA)
// Avoid probing the corners (outside the round or hexagon print surface) on a delta printer.
float distance_from_center = sqrt(xProbe * xProbe + yProbe * yProbe);
if (distance_from_center > DELTA_PROBABLE_RADIUS) continue;
if (distance_from_center > DELTA_PROBEABLE_RADIUS) continue;
#endif //DELTA
ProbeAction act;