Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

DOC: Spelling permimeter -> perimeter #1310

Merged
merged 1 commit into from
Jun 24, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 1 addition & 1 deletion pyproj/_geod.pyx
Original file line number Diff line number Diff line change
Expand Up @@ -566,7 +566,7 @@ cdef class Geod:
Returns
-------
(float, float):
The area (meter^2) and permimeter (meters) of the polygon.
The area (meter^2) and perimeter (meters) of the polygon.

"""
cdef PyBuffWriteManager lonbuff = PyBuffWriteManager(lons)
Expand Down
4 changes: 2 additions & 2 deletions pyproj/geod.py
Original file line number Diff line number Diff line change
Expand Up @@ -969,7 +969,7 @@ def polygon_area_perimeter(
Returns
-------
(float, float):
The geodesic area (meters^2) and permimeter (meters) of the polygon.
The geodesic area (meters^2) and perimeter (meters) of the polygon.
"""
return self._polygon_area_perimeter(
_copytobuffer(lons)[0], _copytobuffer(lats)[0], radians=radians
Expand Down Expand Up @@ -1077,7 +1077,7 @@ def geometry_area_perimeter(
Returns
-------
(float, float):
The geodesic area (meters^2) and permimeter (meters) of the polygon.
The geodesic area (meters^2) and perimeter (meters) of the polygon.
"""
try:
return self.polygon_area_perimeter( # type: ignore
Expand Down