diff --git a/Firmware/Marlin_main.cpp b/Firmware/Marlin_main.cpp
index a606403a..33d0d9eb 100755
--- a/Firmware/Marlin_main.cpp
+++ b/Firmware/Marlin_main.cpp
@@ -5365,7 +5365,7 @@ if(eSoundMode!=e_SOUND_MODE_SILENT)
/*!
### G90 - Switch off relative mode G90: Set to Absolute Positioning
- All coordinates from now on are absolute relative to the origin of the machine.
+ All coordinates from now on are absolute relative to the origin of the machine. E axis is left intact.
*/
case 90: {
axis_relative_modes &= ~(X_AXIS_MASK | Y_AXIS_MASK | Z_AXIS_MASK);
@@ -5374,7 +5374,7 @@ if(eSoundMode!=e_SOUND_MODE_SILENT)
/*!
### G91 - Switch on relative mode G91: Set to Relative Positioning
- All coordinates from now on are relative to the last position.
+ All coordinates from now on are relative to the last position. E axis is left intact.
*/
case 91: {
axis_relative_modes |= X_AXIS_MASK | Y_AXIS_MASK | Z_AXIS_MASK;