Skip to content

Commit

Permalink
Fixed typos and phrasing.
Browse files Browse the repository at this point in the history
  • Loading branch information
knutnergaard committed Dec 1, 2024
1 parent a9e16b3 commit f429c4c
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Lib/fontParts/base/base.py
Original file line number Diff line number Diff line change
Expand Up @@ -388,7 +388,7 @@ def naked(self) -> Any:


class BaseItems:
"""Provide a mapping with an items view object.
"""Provide the given mapping with an items view object.
This class provides a view of the key-value pairs in a mapping, similar to
the behavior of Python's :meth:`dict.items` method. The view dynamically
Expand Down Expand Up @@ -449,7 +449,7 @@ def __repr__(self) -> str:


class BaseKeys:
"""Provide a mapping with an keys view object.
"""Provide the given mapping with a keys view object.
This class provides a view of the keys in a mapping, similar to the behavior
of Python's :meth:`dict.keys` method. The view dynamically reflects any
Expand Down Expand Up @@ -513,7 +513,7 @@ def isdisjoint(self, other: Iterable[Any]) -> bool:


class BaseValues:
"""Provide a mapping with an values view object.
"""Provide the given mapping with a values view object.
This class provides a view of the values in a mapping, similar to the behavior
of Python's :meth:`dict.values` method. The view dynamically reflects any
Expand Down

0 comments on commit f429c4c

Please sign in to comment.