From 2e6aa218a672fa3cc48379fefe27ff4556c5d1ec Mon Sep 17 00:00:00 2001 From: yosinn1-blip Date: Sun, 24 May 2026 05:59:06 +0900 Subject: [PATCH] docs: fix spelling in backend directory structure Signed-off-by: Yoshiki --- docs/backend/backend_python/directory-structure.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/backend/backend_python/directory-structure.md b/docs/backend/backend_python/directory-structure.md index b9da81f35..838db45e7 100644 --- a/docs/backend/backend_python/directory-structure.md +++ b/docs/backend/backend_python/directory-structure.md @@ -2,7 +2,7 @@ The entry point for the backend is in `main.py`, which initializes the databases and handles the startup and shutdown for the FastAPI server. -The code for the application mainly lies in the `app/` directory the heirarchy of which looks like this: +The code for the application mainly lies in the `app/` directory the hierarchy of which looks like this: ```bash . @@ -21,7 +21,7 @@ We will discuss what each of these directories do and the relevant files they co ## config -Related to variables used accross the application. +Related to variables used across the application. | Name | Description | | ------------- | ------------------------------------------------------------------------------------------------------------------- | @@ -29,7 +29,7 @@ Related to variables used accross the application. ## database -This directory contains files related to database operations, including table creation, query handeling and some helper functions on the tables. +This directory contains files related to database operations, including table creation, query handling and some helper functions on the tables. These files are the places where most of the SQL queries are written. By default, on startup this directory is where the databases (`.db` files) is created.