Fix incorrect quote type on Decimal examples
diff --git a/Doc/tutorial/stdlib2.rst b/Doc/tutorial/stdlib2.rst
index d17b031..938430f 100644
--- a/Doc/tutorial/stdlib2.rst
+++ b/Doc/tutorial/stdlib2.rst
@@ -373,7 +373,7 @@
calculations and equality tests that are unsuitable for binary floating point::
>>> Decimal('1.00') % Decimal('.10')
- Decimal("0.00")
+ Decimal('0.00')
>>> 1.00 % 0.10
0.09999999999999995
@@ -386,6 +386,6 @@
>>> getcontext().prec = 36
>>> Decimal(1) / Decimal(7)
- Decimal("0.142857142857142857142857142857142857")
+ Decimal('0.142857142857142857142857142857142857')