Skip to content

Commit 8edd418

Browse files
authored
docs: fix spelling in backend directory structure (#1282)
Signed-off-by: Yoshiki <yosinn1@gmail.com>
1 parent a20c1bb commit 8edd418

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

docs/backend/backend_python/directory-structure.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
The entry point for the backend is in `main.py`, which initializes the databases and handles the startup and shutdown for the FastAPI server.
44

5-
The code for the application mainly lies in the `app/` directory the heirarchy of which looks like this:
5+
The code for the application mainly lies in the `app/` directory the hierarchy of which looks like this:
66

77
```bash
88
.
@@ -21,15 +21,15 @@ We will discuss what each of these directories do and the relevant files they co
2121

2222
## config
2323

24-
Related to variables used accross the application.
24+
Related to variables used across the application.
2525

2626
| Name | Description |
2727
| ------------- | ------------------------------------------------------------------------------------------------------------------- |
2828
| `settings.py` | Contains configuration files for the application, mainly paths and parameters which are used across the application |
2929

3030
## database
3131

32-
This directory contains files related to database operations, including table creation, query handeling and some helper functions on the tables.
32+
This directory contains files related to database operations, including table creation, query handling and some helper functions on the tables.
3333
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
3434
created.
3535

0 commit comments

Comments
 (0)