From db1cf8ec15d2fe011886b8f7730013d1d467cd3b Mon Sep 17 00:00:00 2001 From: a-kenji Date: Wed, 16 Oct 2024 22:55:31 +0200 Subject: [PATCH] docs: fix typos --- docs/nix/render_options/__init__.py | 4 ++-- docs/site/getting-started/configure.md | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/nix/render_options/__init__.py b/docs/nix/render_options/__init__.py index bbec1df7e..8300a45b4 100644 --- a/docs/nix/render_options/__init__.py +++ b/docs/nix/render_options/__init__.py @@ -421,7 +421,7 @@ It can be set via the `inventory` attribute of the [`buildClan`](./buildclan.md# """ # Inventory options are already included under the buildClan attribute - # We just omited them in the buildClan docs, because we want a seperate output for the inventory model + # We just omitted them in the buildClan docs, because we want a separate output for the inventory model with Path(BUILD_CLAN_PATH).open() as f: options: dict[str, dict[str, Any]] = json.load(f) @@ -429,7 +429,7 @@ It can be set via the `inventory` attribute of the [`buildClan`](./buildclan.md# name, _info = item parts = name.split(".") if "." in name else ["root", "sub"] - # Make everything fixed lenght. + # Make everything fixed length. remain = 10 - len(parts) parts.extend(["A"] * remain) category = parts[1] diff --git a/docs/site/getting-started/configure.md b/docs/site/getting-started/configure.md index 6eb06d1f0..f1e0e629d 100644 --- a/docs/site/getting-started/configure.md +++ b/docs/site/getting-started/configure.md @@ -147,7 +147,7 @@ Generate the `hardware-configuration.nix` file for your machine by executing the clan machines update-hardware-config [MACHINE_NAME] ``` -replace `[MACHINE_NAME]` with the name of the machine i.e. `jon` and `[HOSTNAME]` with the `ip_adress` or `hostname` of the machine within the network. i.e. `` +replace `[MACHINE_NAME]` with the name of the machine i.e. `jon` and `[HOSTNAME]` with the `ip_address` or `hostname` of the machine within the network. i.e. `` !!! Example ```bash