Browse Source

Fix error message for probe region sanity check

Scott Lahteine 9 years ago
parent
commit
703df2cb6c
1 changed files with 1 additions and 1 deletions
  1. 1
    1
      Marlin/SanityCheck.h

+ 1
- 1
Marlin/SanityCheck.h View File

@@ -175,7 +175,7 @@
175 175
         #if LEFT_PROBE_BED_POSITION > RIGHT_PROBE_BED_POSITION
176 176
           #error LEFT_PROBE_BED_POSITION must be less than RIGHT_PROBE_BED_POSITION.
177 177
         #elif FRONT_PROBE_BED_POSITION > BACK_PROBE_BED_POSITION
178
-          #error BACK_PROBE_BED_POSITION must be less than FRONT_PROBE_BED_POSITION.
178
+          #error FRONT_PROBE_BED_POSITION must be less than BACK_PROBE_BED_POSITION.
179 179
         #endif
180 180
         // Make sure probing points are reachable
181 181
         #if LEFT_PROBE_BED_POSITION < MIN_PROBE_X

Loading…
Cancel
Save