From 3333703793c635ef7dbc4b5e4b75763763500335 Mon Sep 17 00:00:00 2001 From: Mark Dickinson Date: Sun, 28 Jun 2009 21:46:33 +0000 Subject: [PATCH] Missed one case of incorrect Decimal quoting --- Doc/tutorial/stdlib2.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Doc/tutorial/stdlib2.rst b/Doc/tutorial/stdlib2.rst index 050972c06158..dc8d91f243e9 100644 --- a/Doc/tutorial/stdlib2.rst +++ b/Doc/tutorial/stdlib2.rst @@ -360,7 +360,7 @@ becomes significant if the results are rounded to the nearest cent:: >>> from decimal import * >>> Decimal('0.70') * Decimal('1.05') - Decimal("0.7350") + Decimal('0.7350') >>> .70 * 1.05 0.73499999999999999 -- 2.47.3