Skip to content

Commit

Permalink
fix typo to make doctests passs
Browse files Browse the repository at this point in the history
  • Loading branch information
sietse committed Apr 8, 2022
1 parent 9af44f5 commit 5ae4ef0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -695,7 +695,7 @@ If you have an IntervalDict, and you want to iterate over its atomic intervals i
>>> d[P.open(1, 2)] = 'peach stone'
>>> in_order = sorted([(atomic, value) for key, value in d.items() for atomic in key])
>>> in_order # a list of 3 items
[((0,1), 'peach'), ((1,2), 'peach stone'), ((2,3), 'peach'))]
[((0,1), 'peach'), ((1,2), 'peach stone'), ((2,3), 'peach')]

```

Expand Down

0 comments on commit 5ae4ef0

Please sign in to comment.