Skip to content

Commit 13174fe

Browse files
authored
Fix tutorial.rst typo
1 parent 638bec2 commit 13174fe

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

docs/tutorial.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -372,7 +372,7 @@ This is done using the :ref:`parser-or`, as follows:
372372
>>> flexi_date = full_or_partial_date | days_ago
373373
>>> flexi_date.parse("2012-01-05")
374374
(2012, 1, 5)
375-
>>> days_ago.parse("2 days ago")
375+
>>> flexi_date.parse("2 days ago")
376376
datetime.timedelta(-2)
377377
378378
Notice that you still get good error messages from the appropriate parser,

0 commit comments

Comments
 (0)