Skip to content

Commit

Permalink
fix(doc): typo
Browse files Browse the repository at this point in the history
  • Loading branch information
Rotzbua authored and florianfesti committed Oct 20, 2024
1 parent d8af7a1 commit e74a1eb
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion boxes/edges.py
Original file line number Diff line number Diff line change
Expand Up @@ -162,7 +162,7 @@ class Settings:
attribute access.
Store values that are not supposed to be changed by the users in class or
instance properties. This way API users can set them as needed wile still
instance properties. This way API users can set them as needed while still
be shared between all (Edge) instances using this settings object.
"""
absolute_params: dict[str, Any] = {} # TODO find better typing.
Expand Down
2 changes: 1 addition & 1 deletion boxes/generators/bookholder.py
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ def sideWall(self, move=None):

# Highest point on the right where the book back rests
max_height_back = a + self.bottom_support + self.radius
# Hightest point on the left where the book bottom rests
# Highest point on the left where the book bottom rests
max_height_front = c + self.bottom_support + self.radius

total_height = max(max_height_back, max_height_front)
Expand Down

0 comments on commit e74a1eb

Please sign in to comment.