From 36d6735798897a78554ffa09ac339344e3081b6f Mon Sep 17 00:00:00 2001 From: Lebaud Antoine Date: Sat, 24 Feb 2024 12:26:57 +0100 Subject: [PATCH] =?UTF-8?q?=E2=9C=8F=EF=B8=8F(project)=20fix=20minor=20typ?= =?UTF-8?q?os?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Found typos and fixed them. --- Makefile | 4 ++-- src/backend/publish/settings.py | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Makefile b/Makefile index d6c4f275..b12c14f9 100644 --- a/Makefile +++ b/Makefile @@ -262,11 +262,11 @@ mails-install: ## install the mail generator # -- TS client generator -tsclient-install: ## Install the Typescipt API client generator +tsclient-install: ## Install the Typescript API client generator @$(TSCLIENT_YARN) install .PHONY: tsclient-install -tsclient: tsclient-install ## Generate a Typescipt API client +tsclient: tsclient-install ## Generate a Typescript API client @$(TSCLIENT_YARN) generate:api:client:local ../frontend/tsclient .PHONY: tsclient-install diff --git a/src/backend/publish/settings.py b/src/backend/publish/settings.py index 9d89b5ec..91d74fd6 100755 --- a/src/backend/publish/settings.py +++ b/src/backend/publish/settings.py @@ -44,7 +44,7 @@ def get_release(): class Base(Configuration): """ - This is the base configuration every configuration (aka environnement) should inherit from. It + This is the base configuration every configuration (aka environment) should inherit from. It is recommended to configure third-party applications by creating a configuration mixins in ./configurations and compose the Base configuration with those mixins.