Skip to content

Commit c7b3f0f

Browse files
delirious-lettuceMariatta
authored andcommitted
Remove trailing semicolon in datetime doc example (GH-1653)
1 parent fcdd9b6 commit c7b3f0f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Doc/library/datetime.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -368,7 +368,7 @@ Example usage:
368368
>>> nine_years = ten_years - year
369369
>>> nine_years, nine_years.days // 365
370370
(datetime.timedelta(3285), 9)
371-
>>> three_years = nine_years // 3;
371+
>>> three_years = nine_years // 3
372372
>>> three_years, three_years.days // 365
373373
(datetime.timedelta(1095), 3)
374374
>>> abs(three_years - ten_years) == 2 * three_years + year

0 commit comments

Comments
 (0)