From 61be9375c1e0c4e32c57af1e897d9c56170ffff6 Mon Sep 17 00:00:00 2001 From: Rotzbua Date: Wed, 7 Aug 2024 15:35:47 +0200 Subject: [PATCH] fix: typo --- boxes/generators/wallrack.py | 2 +- documentation/src/api_architecture.rst | 2 +- documentation/src/api_examples.rst | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/boxes/generators/wallrack.py b/boxes/generators/wallrack.py index d28b7f807..d7a555b57 100644 --- a/boxes/generators/wallrack.py +++ b/boxes/generators/wallrack.py @@ -45,7 +45,7 @@ def __init__(self): self.argparser.add_argument( "--side_edges", action="store", type=ArgparseEdgeType("Fh"), choices=list("Fh"), - default="h", help="edge type holding the shelfs together") + default="h", help="edge type holding the shelves together") self.argparser.add_argument( "--flat_bottom", type=boolarg, default=False, help="Make bottom Flat, so that the rack can also stand") diff --git a/documentation/src/api_architecture.rst b/documentation/src/api_architecture.rst index c723b95a2..7015c903a 100644 --- a/documentation/src/api_architecture.rst +++ b/documentation/src/api_architecture.rst @@ -25,7 +25,7 @@ and implement .render() that does the actual drawing. Generators are found in ``boxes/generators/``. They are included into the web UI and the CLI tool by the name of their class. So whenever -you copy either an existing generator or the sceleton in +you copy either an existing generator or the skeleton in ``boxes/generators/_template.py`` you need to change the name of the main class first. diff --git a/documentation/src/api_examples.rst b/documentation/src/api_examples.rst index 2e69e47c4..29b9c4089 100644 --- a/documentation/src/api_examples.rst +++ b/documentation/src/api_examples.rst @@ -46,7 +46,7 @@ calculations needed are a bit more tricky. You can use the ``debug`` default param to check if you got things right when attempting something like this yourself. -Note that the front walls and the shelfs form a 90° angle so they work +Note that the front walls and the shelves form a 90° angle so they work with the default FingerJoints. BinTray