Browse Source

Fix a couple of simple typos

Scott Lahteine 9 years ago
parent
commit
260bbb3109
2 changed files with 2 additions and 2 deletions
  1. 1
    1
      Marlin/SanityCheck.h
  2. 1
    1
      Marlin/stepper_indirection.h

+ 1
- 1
Marlin/SanityCheck.h View File

@@ -175,7 +175,7 @@
175 175
  */
176 176
 #if ENABLED(SWITCHING_EXTRUDER)
177 177
   #if ENABLED(DUAL_X_CARRIAGE)
178
-    #error "SINGLENOZZLE and DUAL_X_CARRIAGE are incompatible."
178
+    #error "SWITCHING_EXTRUDER and DUAL_X_CARRIAGE are incompatible."
179 179
   #elif EXTRUDERS != 2
180 180
     #error "SWITCHING_EXTRUDER requires exactly 2 EXTRUDERS."
181 181
   #elif NUM_SERVOS < 1

+ 1
- 1
Marlin/stepper_indirection.h View File

@@ -72,7 +72,7 @@
72 72
   #define X2_ENABLE_INIT SET_OUTPUT(X2_ENABLE_PIN)
73 73
   #define X2_ENABLE_WRITE(STATE) WRITE(X2_ENABLE_PIN,STATE)
74 74
   #define X2_ENABLE_READ READ(X_ENABLE_PIN)
75
-#endif // DUAL_X_CARRIAGE
75
+#endif
76 76
 
77 77
 // Y motor
78 78
 #define Y_STEP_INIT SET_OUTPUT(Y_STEP_PIN)

Loading…
Cancel
Save