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-05-15 12:58:03 +0300
committerDavid Crocker <dcrocker@eschertech.com>2021-05-15 12:58:03 +0300
commita4e104a1ec566122be81ec48af9e02bf7aeafca8 (patch)
tree67a5db44ea255263e3bc768fd8e42573491b0eaa /src/GCodes/GCodes2.cpp
parent485a9ee8a2220b34e99c8073723bbea6a379b888 (diff)
Corrected a comment
Diffstat (limited to 'src/GCodes/GCodes2.cpp')
-rw-r--r--src/GCodes/GCodes2.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/GCodes/GCodes2.cpp b/src/GCodes/GCodes2.cpp
index 31f37ffb..3d2a05d7 100644
--- a/src/GCodes/GCodes2.cpp
+++ b/src/GCodes/GCodes2.cpp
@@ -499,7 +499,7 @@ bool GCodes::HandleMcode(GCodeBuffer& gb, const StringRef& reply) THROWS(GCodeEx
GCodeResult result;
if (gb.GetCommandFraction() > 0
- && code != 569 // these are the only G-codes we implement that can have fractional parts
+ && code != 569 // these are the only M-codes we implement that can have fractional parts
)
{
result = TryMacroFile(gb);