diff --git a/docs/features.md b/docs/features.md
index 798a36968..710dffeb0 100644
--- a/docs/features.md
+++ b/docs/features.md
@@ -154,9 +154,9 @@ Any integration is designed to be so simple to use (with dependencies) that you
### Tested
-* 100% test coverage (* not yet, in a couple days).
-* 100% type annotated code base.
-
+* 100% test coverage (* not yet, in a couple days).
+* 100% type annotated code base.
+* Used in production applications.
## Starlette features
@@ -192,7 +192,7 @@ With **FastAPI** you get all of **Pydantic**'s features (as FastAPI is based on
* **No brainfuck**:
* No new schema definition micro-language to learn.
* If you know Python types you know how to use Pydantic.
-* Plays nicely with your **IDE/linter/brain**:
+* Plays nicely with your **IDE/linter/brain**:
* Because pydantic data structures are just instances of classes you define; auto-completion, linting, mypy and your intuition should all work properly with your validated data.
* **Fast**:
* in benchmarks Pydantic is faster than all other tested libraries.
diff --git a/docs/tutorial/first-steps.md b/docs/tutorial/first-steps.md
index ae387b749..2b29e089e 100644
--- a/docs/tutorial/first-steps.md
+++ b/docs/tutorial/first-steps.md
@@ -109,7 +109,7 @@ Here the `app` variable will be an "instance" of the class `FastAPI`.
This will be the main point of interaction to create all your API.
-This `app` is the same one referred by `uvicorn` in thet command:
+This `app` is the same one referred by `uvicorn` in the command:
```bash
uvicorn main:app --debug