From bbb2bdd2df44b78b35dd66c0d04bb7ded844c5f4 Mon Sep 17 00:00:00 2001 From: Logan-code Date: Mon, 24 May 2021 23:03:18 -0600 Subject: [PATCH] Update gcodeprocessing.js fixed some output string typos. --- js/gcodeprocessing.js | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/js/gcodeprocessing.js b/js/gcodeprocessing.js index ebde8ae..58ab712 100644 --- a/js/gcodeprocessing.js +++ b/js/gcodeprocessing.js @@ -913,11 +913,11 @@ function outputSettings(formName) { string += "\n\nTemperatures:\n"; if(formName.name == "temperatureForm") { string += "Bed: "+formName.bedtemp.value+" deg C\n"; - string += "Segement E: "+formName.temp_e1.value+" deg C\n"; - string += "Segement D: "+formName.temp_d1.value+" deg C\n"; - string += "Segement C: "+formName.temp_c1.value+" deg C\n"; - string += "Segement B: "+formName.temp_b1.value+" deg C\n"; - string += "Segement A: "+formName.temp_a1.value+" deg C\n"; + string += "Segment E: "+formName.temp_e1.value+" deg C\n"; + string += "Segment D: "+formName.temp_d1.value+" deg C\n"; + string += "Segment C: "+formName.temp_c1.value+" deg C\n"; + string += "Segment B: "+formName.temp_b1.value+" deg C\n"; + string += "Segment A: "+formName.temp_a1.value+" deg C\n"; string += "First Layer: "+formName.temp_a0.value+" deg C\n"; } else { string += "Bed: "+formName.bedtemp.value+" deg C\n"; @@ -964,4 +964,4 @@ function outputSettings(formName) { } } downloadFile(fileName, string); -} \ No newline at end of file +}