Skip to content

Commit ef52d1c

Browse files
authored
Fix typos & capitalizations (#168)
1 parent 2a50a91 commit ef52d1c

File tree

1 file changed

+5
-5
lines changed
  • fastapi_template/template/{{cookiecutter.project_name}}

1 file changed

+5
-5
lines changed

fastapi_template/template/{{cookiecutter.project_name}}/README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -90,9 +90,9 @@ An example of .env file:
9090
You can read more about BaseSettings class here: https://pydantic-docs.helpmanual.io/usage/settings/
9191
9292
{%- if cookiecutter.otlp_enabled == "True" %}
93-
## Opentelemetry
93+
## OpenTelemetry
9494
95-
If you want to start your project with opentelemetry collector
95+
If you want to start your project with OpenTelemetry collector
9696
you can add `-f ./deploy/docker-compose.otlp.yml` to your docker command.
9797
9898
Like this:
@@ -101,14 +101,14 @@ Like this:
101101
docker-compose -f deploy/docker-compose.yml -f deploy/docker-compose.otlp.yml --project-directory . up
102102
```
103103
104-
This command will start opentelemetry collector and jaeger.
104+
This command will start OpenTelemetry collector and jaeger.
105105
After sending a requests you can see traces in jaeger's UI
106106
at http://localhost:16686/.
107107
108108
This docker configuration is not supposed to be used in production.
109109
It's only for demo purpose.
110110
111-
You can read more about opentelemetry here: https://opentelemetry.io/
111+
You can read more about OpenTelemetry here: https://opentelemetry.io/
112112
{%- endif %}
113113
114114
## Pre-commit
@@ -125,7 +125,7 @@ By default it runs:
125125
* black (formats your code);
126126
* mypy (validates types);
127127
* isort (sorts imports in all files);
128-
* flake8 (spots possibe bugs);
128+
* flake8 (spots possible bugs);
129129
130130
131131
You can read more about pre-commit here: https://pre-commit.com/

0 commit comments

Comments
 (0)