Skip to content

Commit e19dc4a

Browse files
authored
Merge pull request #114 from nathanielobrown/master
Fixes typos in sortedlist docstrings
2 parents e05634b + 42efac4 commit e19dc4a

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

sortedcontainers/sortedlist.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1187,7 +1187,7 @@ def bisect_right(self, value):
11871187
"""Return an index to insert `value` in the sorted list.
11881188
11891189
Similar to `bisect_left`, but if `value` is already present, the
1190-
insertion point with be after (to the right of) any existing values.
1190+
insertion point will be after (to the right of) any existing values.
11911191
11921192
Similar to the `bisect` module in the standard library.
11931193
@@ -2243,7 +2243,7 @@ def bisect_right(self, value):
22432243
"""Return an index to insert `value` in the sorted-key list.
22442244
22452245
Similar to `bisect_left`, but if `value` is already present, the
2246-
insertion point with be after (to the right of) any existing values.
2246+
insertion point will be after (to the right of) any existing values.
22472247
22482248
Similar to the `bisect` module in the standard library.
22492249
@@ -2303,7 +2303,7 @@ def bisect_key_right(self, key):
23032303
"""Return an index to insert `key` in the sorted-key list.
23042304
23052305
Similar to `bisect_key_left`, but if `key` is already present, the
2306-
insertion point with be after (to the right of) any existing keys.
2306+
insertion point will be after (to the right of) any existing keys.
23072307
23082308
Similar to the `bisect` module in the standard library.
23092309

0 commit comments

Comments
 (0)