Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/Duet3D/RepRapFirmware.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavid Crocker <dcrocker@eschertech.com>2021-10-21 10:41:06 +0300
committerDavid Crocker <dcrocker@eschertech.com>2021-10-21 10:41:06 +0300
commit0b8ddacb108cf09b88ed71c5f4963463f223fc49 (patch)
tree1e288a9bd97eca97df7c57ac432e0701b725bd5f
parent5d09951b844934ee0dd43f020d24bb95529ac143 (diff)
Fixed typo in warning message
-rw-r--r--src/GCodes/GCodes.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/GCodes/GCodes.cpp b/src/GCodes/GCodes.cpp
index a805f5c0..8ba9a2c8 100644
--- a/src/GCodes/GCodes.cpp
+++ b/src/GCodes/GCodes.cpp
@@ -3161,7 +3161,7 @@ GCodeResult GCodes::LoadHeightMap(GCodeBuffer& gb, const StringRef& reply)
reply.Clear(); // get rid of the error message
if (!zDatumSetByProbing && platform.GetZProbeOrDefault(0)->GetProbeType() != ZProbeType::none) //TODO store Z probe number in height map
{
- reply.copy("the height map was loaded when the current Z=0 datum was not determined probing. This may result in a height offset.");
+ reply.copy("the height map was loaded when the current Z=0 datum was not determined by probing. This may result in a height offset.");
return GCodeResult::warning;
}