Skip to content

Commit be26cf5

Browse files
authored
Merge pull request #7 from davidblewett/patch-1
Typo fixes in doc strings
2 parents c07f561 + 11edb15 commit be26cf5

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

rust_fst/map.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -116,7 +116,7 @@ class Map(object):
116116
A few caveats must be kept in mind:
117117
118118
* Once constructed, a Map can never be modified.
119-
* Sets must be built with iterators of lexicographically sorted
119+
* Maps must be built with iterators of lexicographically sorted
120120
(str/unicode, int) tuples, where the integer value must be positive.
121121
"""
122122

@@ -301,7 +301,7 @@ def union(self, *others):
301301
maps, represented as a tuple of the map index and the value in the
302302
map.
303303
304-
:param others: List of :py:class:`Set` objects
304+
:param others: List of :py:class:`Map` objects
305305
:returns: Iterator over all items in all maps in lexicographical
306306
order
307307
"""
@@ -346,7 +346,7 @@ def symmetric_difference(self, *others):
346346
maps, represented as a tuple of the map index and the value in the
347347
map.
348348
349-
:param others: List of :py:class:`Mapp` objects
349+
:param others: List of :py:class:`Map` objects
350350
:returns: Iterator over all items whose key exists in only one of
351351
the maps in lexicographical order
352352
"""

0 commit comments

Comments
 (0)