Thanks to visit codestin.com
Credit goes to github.com

Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion docs/en/docs/async.md
Original file line number Diff line number Diff line change
Expand Up @@ -222,7 +222,7 @@ All of the cashiers doing all the work with one client after the other πŸ‘¨β€

And you have to wait πŸ•™ in the line for a long time or you lose your turn.

You probably wouldn't want to take your crush 😍 with you to do errands at the bank 🏦.
You probably wouldn't want to take your crush 😍 with you to run errands at the bank 🏦.

### Burger Conclusion

Expand Down
6 changes: 3 additions & 3 deletions docs/en/docs/tutorial/first-steps.md
Original file line number Diff line number Diff line change
Expand Up @@ -325,6 +325,6 @@ There are many other objects and models that will be automatically converted to

* Import `FastAPI`.
* Create an `app` instance.
* Write a **path operation decorator** (like `@app.get("/")`).
* Write a **path operation function** (like `def root(): ...` above).
* Run the development server (like `uvicorn main:app --reload`).
* Write a **path operation decorator** using decorators like `@app.get("/")`.
* Define a **path operation function**; for example, `def root(): ...`.
* Run the development server using the command `fastapi dev`.