diff --git a/RELEASE_NOTES.md b/RELEASE_NOTES.md index b99e3a30..dda1c7e6 100644 --- a/RELEASE_NOTES.md +++ b/RELEASE_NOTES.md @@ -30,7 +30,7 @@ But you might still need to adapt your code: ## Bug Fixes - +- Fixed some typos in the docs. ### Cookiecutter template diff --git a/src/frequenz/repo/config/__init__.py b/src/frequenz/repo/config/__init__.py index fbbfeec8..753e5a3f 100644 --- a/src/frequenz/repo/config/__init__.py +++ b/src/frequenz/repo/config/__init__.py @@ -35,8 +35,8 @@ nox.configure(RepositoryType.LIB) ``` -Again, make sure to pick the correct project typedefault configuration based on the type of your -project (`actor_config`, `api_config`, `app_config`, `lib_config`, `model_config`). +Again, make sure to pick the correct project default configuration based on the type of +your project (`actor_config`, `api_config`, `app_config`, `lib_config`, `model_config`). If you need to use some custom configuration, you can start from the default settings in the [`frequenz.repo.config.nox.default`][] module, @@ -312,7 +312,7 @@ typed. 3. Exclude the `src/conftest.py` file from the distribution package, as it shouldn't be - shipped with the code, it is only for delelopment purposes. To do so, add the + shipped with the code, it is only for development purposes. To do so, add the following line to the `MANIFEST.in` file: ``` diff --git a/src/frequenz/repo/config/nox/__init__.py b/src/frequenz/repo/config/nox/__init__.py index 1f96662b..8cd529eb 100644 --- a/src/frequenz/repo/config/nox/__init__.py +++ b/src/frequenz/repo/config/nox/__init__.py @@ -15,7 +15,7 @@ nox.configure(RepositoryType.LIB) ``` -Again, make sure to pick the correct project typedefault configuration based on the type +Again, make sure to pick the correct project default configuration based on the type of your project (`actor_config`, `api_config`, `app_config`, `lib_config`, `model_config`).