Skip to content

Commit 7e21d1b

Browse files
committed
Merge pull request yidao620c#112 from kyan001/patch-1
fix some indent error
2 parents 9f63c41 + 91878c6 commit 7e21d1b

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

source/c03/p02_accurate_decimal_calculations.rst

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -55,13 +55,13 @@
5555
>>> print(a / b)
5656
0.7647058823529411764705882353
5757
>>> with localcontext() as ctx:
58-
... ctx.prec = 3
59-
... print(a / b)
58+
... ctx.prec = 3
59+
... print(a / b)
6060
...
6161
0.765
6262
>>> with localcontext() as ctx:
63-
... ctx.prec = 50
64-
... print(a / b)
63+
... ctx.prec = 50
64+
... print(a / b)
6565
...
6666
0.76470588235294117647058823529411764705882352941176
6767
>>>

0 commit comments

Comments
 (0)