Skip to content

Commit

Permalink
Merge pull request #2785 from TomJGooding/docs-fix-geometry-typos
Browse files Browse the repository at this point in the history
  • Loading branch information
davep authored Jun 15, 2023
2 parents 78bfb5a + 7ea1ed0 commit 8e6904b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/textual/geometry.py
Original file line number Diff line number Diff line change
Expand Up @@ -427,7 +427,7 @@ def bottom(self) -> int:

@property
def area(self) -> int:
"""The are under the region."""
"""The area under the region."""
return self.width * self.height

@property
Expand Down Expand Up @@ -1122,7 +1122,7 @@ def grow_maximum(self, other: Spacing) -> Spacing:
other: Spacing object.
Returns:
New spacing were the values are maximum of the two values.
New spacing where the values are maximum of the two values.
"""
top, right, bottom, left = self
other_top, other_right, other_bottom, other_left = other
Expand Down

0 comments on commit 8e6904b

Please sign in to comment.