Skip to content

Commit 96d03a5

Browse files
committed
Missed one case of incorrect Decimal quoting
1 parent 68e3ce4 commit 96d03a5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Doc/tutorial/stdlib2.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -360,7 +360,7 @@ becomes significant if the results are rounded to the nearest cent::
360360

361361
>>> from decimal import *
362362
>>> Decimal('0.70') * Decimal('1.05')
363-
Decimal("0.7350")
363+
Decimal('0.7350')
364364
>>> .70 * 1.05
365365
0.73499999999999999
366366

0 commit comments

Comments
 (0)