Skip to content

Commit

Permalink
Spelling (#1310)
Browse files Browse the repository at this point in the history
  • Loading branch information
zanejgr committed Jun 24, 2023
1 parent f235f9b commit 79034e4
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
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

0 comments on commit 79034e4

Please sign in to comment.