diff options
author | Thijs Triemstra <info@collab.nl> | 2025-07-25 18:31:19 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2025-07-25 12:31:19 -0400 |
commit | 60879fd298fe3b4f3dda63561e6a1c9bdc5ee9af (patch) | |
tree | 74cd5c84ca4758c2de14f0fd1686b75a74bfa142 /klippy/extras/resonance_tester.py | |
parent | ef4c76fe9494d0e011d6da5610fa868d2e702fff (diff) | |
download | kutter-60879fd298fe3b4f3dda63561e6a1c9bdc5ee9af.tar.gz kutter-60879fd298fe3b4f3dda63561e6a1c9bdc5ee9af.tar.xz kutter-60879fd298fe3b4f3dda63561e6a1c9bdc5ee9af.zip |
klippy: fix typos in python code (#6989)
Signed-off-by: Thijs Triemstra <info@collab.nl>
Diffstat (limited to 'klippy/extras/resonance_tester.py')
-rw-r--r-- | klippy/extras/resonance_tester.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/klippy/extras/resonance_tester.py b/klippy/extras/resonance_tester.py index a4d3876f..ff32dcac 100644 --- a/klippy/extras/resonance_tester.py +++ b/klippy/extras/resonance_tester.py @@ -295,7 +295,7 @@ class ResonanceTester: return parsed_chips def _get_max_calibration_freq(self): return 1.5 * self.generator.get_max_freq() - cmd_TEST_RESONANCES_help = ("Runs the resonance test for a specifed axis") + cmd_TEST_RESONANCES_help = ("Runs the resonance test for a specified axis") def cmd_TEST_RESONANCES(self, gcmd): # Parse parameters axis = _parse_axis(gcmd, gcmd.get("AXIS").lower()) @@ -345,7 +345,7 @@ class ResonanceTester: gcmd.respond_info( "Resonances data written to %s file" % (csv_name,)) cmd_SHAPER_CALIBRATE_help = ( - "Simular to TEST_RESONANCES but suggest input shaper config") + "Similar to TEST_RESONANCES but suggest input shaper config") def cmd_SHAPER_CALIBRATE(self, gcmd): # Parse parameters axis = gcmd.get("AXIS", None) |