Browse Source

Fix Z_STEPPER_ALIGN_[XY] sanity error (#15124)

Jason Smith 5 years ago
parent
commit
be051c890f
1 changed files with 1 additions and 1 deletions
  1. 1
    1
      Marlin/src/inc/SanityCheck.h

+ 1
- 1
Marlin/src/inc/SanityCheck.h View File

@@ -2281,7 +2281,7 @@ static_assert(   _ARR_TEST(3,0) && _ARR_TEST(3,1) && _ARR_TEST(3,2)
2281 2281
   constexpr float sanity_arr_z_align_x[] = Z_STEPPER_ALIGN_X, sanity_arr_z_align_y[] = Z_STEPPER_ALIGN_Y;
2282 2282
   static_assert(
2283 2283
     COUNT(sanity_arr_z_align_x) == Z_STEPPER_COUNT && COUNT(sanity_arr_z_align_y) == Z_STEPPER_COUNT,
2284
-    "Z_STEPPER_ALIGN_[XY]POS settings require one element per Z stepper."
2284
+    "Z_STEPPER_ALIGN_[XY] settings require one element per Z stepper."
2285 2285
   );
2286 2286
 #endif
2287 2287
 

Loading…
Cancel
Save