From ce3ae01c523c7f79f71634cb61bb9ecba6052eae Mon Sep 17 00:00:00 2001 From: Vojtech Bubnik Date: Fri, 3 Mar 2023 10:12:53 +0100 Subject: [PATCH] Fixing a typo in code comment, merging #9878 manually, thanks @coco33920 --- src/libslic3r/Slicing.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/libslic3r/Slicing.cpp b/src/libslic3r/Slicing.cpp index 27c6b8ec3c..a0fe3e6623 100644 --- a/src/libslic3r/Slicing.cpp +++ b/src/libslic3r/Slicing.cpp @@ -31,7 +31,7 @@ inline coordf_t min_layer_height_from_nozzle(const PrintConfig &print_config, in return (min_layer_height == 0.) ? MIN_LAYER_HEIGHT_DEFAULT : std::max(MIN_LAYER_HEIGHT, min_layer_height); } -// Maximum layer height for the variable layer height algorithm, 3/4 of a nozzle dimaeter by default, +// Maximum layer height for the variable layer height algorithm, 3/4 of a nozzle diameter by default, // it should not be smaller than the minimum layer height. inline coordf_t max_layer_height_from_nozzle(const PrintConfig &print_config, int idx_nozzle) { @@ -48,7 +48,7 @@ coordf_t Slicing::min_layer_height_from_nozzle(const DynamicPrintConfig &print_c return (min_layer_height == 0.) ? MIN_LAYER_HEIGHT_DEFAULT : std::max(MIN_LAYER_HEIGHT, min_layer_height); } -// Maximum layer height for the variable layer height algorithm, 3/4 of a nozzle dimaeter by default, +// Maximum layer height for the variable layer height algorithm, 3/4 of a nozzle diameter by default, // it should not be smaller than the minimum layer height. coordf_t Slicing::max_layer_height_from_nozzle(const DynamicPrintConfig &print_config, int idx_nozzle) {