]> git.ipfire.org Git - thirdparty/fastapi/fastapi.git/commitdiff
✏️ Update white space characters in bigger apps (#15801)
authorSebastián Ramírez <tiangolo@gmail.com>
Sat, 20 Jun 2026 00:26:04 +0000 (02:26 +0200)
committerGitHub <noreply@github.com>
Sat, 20 Jun 2026 00:26:04 +0000 (00:26 +0000)
docs/en/docs/tutorial/bigger-applications.md

index b0e1a9b73898ab6e7e3ae55dda2f821b746f7759..07478b5cce7d9cf94388393173264aa63504e0bf 100644 (file)
@@ -17,16 +17,16 @@ Let's say you have a file structure like this:
 ```
 .
 ├── app
-│   ├── __init__.py
-│   ├── main.py
-│   ├── dependencies.py
-│   └── routers
-│   │   ├── __init__.py
-│   │   ├── items.py
-│   │   └── users.py
-│   └── internal
-│       ├── __init__.py
-│       └── admin.py
+│   ├── __init__.py
+│   ├── main.py
+│   ├── dependencies.py
+│   └── routers
+│   │   ├── __init__.py
+│   │   ├── items.py
+│   │   └── users.py
+│   └── internal
+│       ├── __init__.py
+│       └── admin.py
 ```
 
 /// tip