浏览代码

Fix Z_STEPPER_ALIGN_[XY] sanity error (#15124)

Jason Smith 5 年前
父节点
当前提交
be051c890f
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1
    1
      Marlin/src/inc/SanityCheck.h

+ 1
- 1
Marlin/src/inc/SanityCheck.h 查看文件

@@ -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
 

正在加载...
取消
保存