Skip to content

Commit

Permalink
docs: Update typos in docs.:
Browse files Browse the repository at this point in the history
  • Loading branch information
iusztinpaul committed Jun 8, 2023
1 parent 224b13b commit 9de3a38
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 2 deletions.
2 changes: 2 additions & 0 deletions app-api/api/application.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,8 @@


def get_app() -> FastAPI:
"""Create FastAPI app."""

app = FastAPI(
title=get_settings().PROJECT_NAME,
docs_url=f"/api/{get_settings().VERSION}/docs",
Expand Down
2 changes: 1 addition & 1 deletion app-frontend/frontend/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
options=area_response.json().get("values", []),
)

# Create drown down for consumer type selection.
# Create dropdown for consumer type selection.
consumer_type_response = requests.get(API_URL / "consumer_type_values")

consumer_type = st.selectbox(
Expand Down
2 changes: 1 addition & 1 deletion app-monitoring/monitoring/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
options=area_response.json().get("values", []),
)

# Create drown down for consumer type selection.
# Create dropdown for consumer type selection.
consumer_type_response = requests.get(API_URL / "consumer_type_values")

consumer_type = st.selectbox(
Expand Down

0 comments on commit 9de3a38

Please sign in to comment.