diff --git a/docs/source/algorithms/ExponentialCorrection-v1.rst b/docs/source/algorithms/ExponentialCorrection-v1.rst
index e597493332d96074d06aa78a71c77da9e116b419..369f24d942c622bb0e75c2faedf55bed283146e8 100644
--- a/docs/source/algorithms/ExponentialCorrection-v1.rst
+++ b/docs/source/algorithms/ExponentialCorrection-v1.rst
@@ -33,8 +33,8 @@ Usage
     ws_divide = ExponentialCorrection(InputWorkspace=ws,C0=2.0,C1=1.0,Operation="Divide")
     ws_multiply = ExponentialCorrection(InputWorkspace=ws,C0=2.0,C1=1.0,Operation="Multiply")
 
-    print("The first Y value after divide correction is: {:.11f}".format(ws_divide.dataY(0)[1]))
-    print("The first Y value after multiply correction is: {:.11f}".format(ws_multiply.dataY(0)[1]))
+    print("The first Y value after divide correction is: {:.11e}".format(ws_divide.dataY(0)[1]))
+    print("The first Y value after multiply correction is: {:.11e}".format(ws_multiply.dataY(0)[1]))
 
 Output: