From adea85140011ef909822385bf1af1f83937a5edc Mon Sep 17 00:00:00 2001 From: danielcristho Date: Sat, 7 Mar 2026 17:00:39 +0700 Subject: [PATCH 1/2] docs: fix command typo --- CONTRIBUTING.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 6bfff19..86c6aec 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -7,7 +7,7 @@ for more details on how to contribute. ## Render Engine CLI Specific Topics Render Engine CLI is a `uv` based project. For more information on installing `uv` and using it -please see the [uv documentation](https://docs.astral.sh/uv/#installation).To get started, for +please see the [uv documentation](https://docs.astral.sh/uv/#installation). To get started, for this repository and check out your fork. ```shell @@ -34,6 +34,6 @@ uv pip install . && uv pip install -e . **NOTE**: The above actually has you installing the CLI as uneditable and then as editable. This is only needed as long as the main Render Engine install includes an entry point as there is a conflict. The `uv pip install .` will overwrite the entry point for `render-engine` while the -second command, `uv pip insall -e .` will convert it to an editable install. +second command, `uv pip install -e .` will convert it to an editable install. This will allow you to test your changes via the command line. From 5f327a6595b95dcabd8d719d8d9f0f2a374493f9 Mon Sep 17 00:00:00 2001 From: danielcristho Date: Sat, 7 Mar 2026 17:04:28 +0700 Subject: [PATCH 2/2] docs: fix some typos --- CONTRIBUTING.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 86c6aec..cd1f405 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -1,6 +1,6 @@ # Contributing to the Render Engine Projects -Render Engine CLI is the CLI tool for the Render Engin static site generator. Please refer to +Render Engine CLI is the CLI tool for the Render Engine static site generator. Please refer to the main [CONTRIBUTING.md](https://github.com/render-engine/render-engine/blob/main/CONTRIBUTING.md) for more details on how to contribute.