diff --git a/docs/source/algorithms/RemovePromptPulse-v1.rst b/docs/source/algorithms/RemovePromptPulse-v1.rst
index ed8ebe3780d10818b4c603d6a1f4163e3939dd4b..8f41765299f5d1051d215c37f6da139af32b0be2 100644
--- a/docs/source/algorithms/RemovePromptPulse-v1.rst
+++ b/docs/source/algorithms/RemovePromptPulse-v1.rst
@@ -31,10 +31,10 @@ Usage
     x=w1.dataX(0)
     y=w1.dataY(0)
     
-    print("Y( {} ) =  {}".format(x[100], y[100]))
-    print("Y( {} ) =  {}".format(x[1000], y[1000]))
-    print("Y( {} ) =  {}".format(x[4100], y[4100]))
-    print("Y( {} ) =  {}".format(x[5000], y[5000]))
+    print("Y( {} ) =  {:.1f}".format(x[100], y[100]))
+    print("Y( {} ) =  {:.1f}".format(x[1000], y[1000]))
+    print("Y( {} ) =  {:.1f}".format(x[4100], y[4100]))
+    print("Y( {} ) =  {:.1f}".format(x[5000], y[5000]))
 
 .. testcleanup:: RemovePromptPulse