diff --git a/Marlin/G26_Mesh_Validation_Tool.cpp b/Marlin/G26_Mesh_Validation_Tool.cpp
index b67b080ceac3b7b2e755742857b8227c59d4bec2..6f22afeaa8649f3dbb9e576812ecc4dbad14bed1 100644
--- a/Marlin/G26_Mesh_Validation_Tool.cpp
+++ b/Marlin/G26_Mesh_Validation_Tool.cpp
@@ -183,8 +183,8 @@
     int   i, xi, yi;
     mesh_index_pair location;
 
-    // Don't allow Mesh Validation without homing first
-    // If the paramter parsing did not go OK, we abort the command
+    // Don't allow Mesh Validation without homing first,
+    // or if the parameter parsing did not go OK, abort
     if (axis_unhomed_error(true, true, true) || parse_G26_parameters()) return;
 
     if (current_position[Z_AXIS] < Z_CLEARANCE_BETWEEN_PROBES) {