From 9e987e49710c680892dc2c1b2d633f925f2b63eb Mon Sep 17 00:00:00 2001 From: Roxy-3D Date: Wed, 21 Mar 2018 16:53:40 -0500 Subject: [PATCH] Correct truncated comment --- Marlin/ubl_G29.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Marlin/ubl_G29.cpp b/Marlin/ubl_G29.cpp index 4e529e6670..2d94e3d24a 100644 --- a/Marlin/ubl_G29.cpp +++ b/Marlin/ubl_G29.cpp @@ -594,8 +594,8 @@ if (parser.seen('S')) { // Store (or Save) Current Mesh Data g29_storage_slot = parser.has_value() ? parser.value_int() : storage_slot; - if (g29_storage_slot == -1) // Special case, we are going to 'Export' the mesh to the - return report_current_mesh(); + if (g29_storage_slot == -1) // Special case, the user wants to 'Export' the mesh to the + return report_current_mesh(); // host program to be saved on the user's computer int16_t a = settings.calc_num_meshes();