]> git.ipfire.org Git - thirdparty/fastapi/fastapi.git/commitdiff
:memo: Fix docs typos
authorSebastián Ramírez <tiangolo@gmail.com>
Sat, 15 Dec 2018 16:05:24 +0000 (20:05 +0400)
committerSebastián Ramírez <tiangolo@gmail.com>
Sat, 15 Dec 2018 16:05:24 +0000 (20:05 +0400)
docs/features.md
docs/tutorial/first-steps.md

index 798a36968c31079cdc5f4e25d86805b659ce4576..710dffeb00135b962b8852db8704721b6f5c37ca 100644 (file)
@@ -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.
-<!-- * Used in production applications -->
+* 100% <abbr title="The amount of code that is automatically tested">test coverage</abbr> (* not yet, in a couple days).
+* 100% <abbr title="Python type annotations, with this your editor and external tools can give you better support">type annotated</abbr> 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 **<abbr title="Integrated Development Environment, similar to a code editor">IDE</abbr>/<abbr title="A program that checks for code errors">linter</abbr>/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 <a href="https://pydantic-docs.helpmanual.io/#benchmarks-tag" target="_blank">benchmarks</a> Pydantic is faster than all other tested libraries.
index ae387b749bf5264b9a11d5749310de03c0af536d..2b29e089ebd36d5737ec658ea6e8e3344f4e71a8 100644 (file)
@@ -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