diff --git a/MantidPlot/src/Mantid/MantidTable.cpp b/MantidPlot/src/Mantid/MantidTable.cpp
index 13d3d3572a15b4a2659af04f075aa059b651964a..295b08302052dd65f515ce48747fac56e5484fdd 100644
--- a/MantidPlot/src/Mantid/MantidTable.cpp
+++ b/MantidPlot/src/Mantid/MantidTable.cpp
@@ -315,7 +315,8 @@ void MantidTable::cellEdited(int row, int col) {
     // Put it back in the stream and let the column deduce the correct
     // type of the number.
     std::stringstream textStream;
-    textStream << std::setprecision(std::numeric_limits<long double>::digits10 + 1)<<number;
+    textStream << std::setprecision(std::numeric_limits<long double>::digits10 +
+                                    1) << number;
     std::istringstream stream(textStream.str());
     c->read(index, stream);
   }
diff --git a/docs/source/release/v3.11.0/framework.rst b/docs/source/release/v3.11.0/framework.rst
index 6babf2635142c0d0061c37a6589e6f77ed517692..1ce2daa28ef9c0f06b3235289c33518ae7bf3c8c 100644
--- a/docs/source/release/v3.11.0/framework.rst
+++ b/docs/source/release/v3.11.0/framework.rst
@@ -98,7 +98,8 @@ Bug fixes
 
 - :ref:`CubicSpline <func-CubicSpline>` is fixed to sort the y-values and x-values correctly.
 - Fix displayed type name for optional boolean properties.
-- Fix parameters that are tied to functions can now be untied correctly. 
+- Fix parameters that are tied to functions can now be untied correctly.
+- Table workspaces do not have the values changed by viewing them (no rounding).
 
 Improved
 ########