Browse Source

Merge pull request #3250 from esenapaj/patch-1

Fix typo
Scott Lahteine 8 years ago
parent
commit
e4039a9b5b
1 changed files with 4 additions and 4 deletions
  1. 4
    4
      Marlin/Marlin_main.cpp

+ 4
- 4
Marlin/Marlin_main.cpp View File

@@ -3377,11 +3377,11 @@ inline void gcode_G28() {
3377 3377
       #if HAS_SERVO_ENDSTOPS
3378 3378
         raise_z_for_servo();
3379 3379
       #endif
3380
-      deploy_z_probe(); // Engage Z Servo endstop if available. Z_PROBE_SLED is missed her.
3380
+      deploy_z_probe(); // Engage Z Servo endstop if available. Z_PROBE_SLED is missed here.
3381 3381
 
3382 3382
       st_synchronize();
3383 3383
       // TODO: clear the leveling matrix or the planner will be set incorrectly
3384
-      setup_for_endstop_move(); // to late. Must be done before deploying.
3384
+      setup_for_endstop_move(); // Too late. Must be done before deploying.
3385 3385
 
3386 3386
       feedrate = homing_feedrate[Z_AXIS];
3387 3387
 
@@ -3394,12 +3394,12 @@ inline void gcode_G28() {
3394 3394
       SERIAL_PROTOCOL(current_position[Z_AXIS] + 0.0001);
3395 3395
       SERIAL_EOL;
3396 3396
 
3397
-      clean_up_after_endstop_move(); // to early. must be done after the stowing.
3397
+      clean_up_after_endstop_move(); // Too early. must be done after the stowing.
3398 3398
 
3399 3399
       #if HAS_SERVO_ENDSTOPS
3400 3400
         raise_z_for_servo();
3401 3401
       #endif
3402
-      stow_z_probe(false); // Retract Z Servo endstop if available. Z_PROBE_SLED is missed her.
3402
+      stow_z_probe(false); // Retract Z Servo endstop if available. Z_PROBE_SLED is missed here.
3403 3403
 
3404 3404
       gcode_M114(); // Send end position to RepetierHost
3405 3405
     }

Loading…
Cancel
Save