From 1896153d5824c832629e5fa31b22333ef4a1d151 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sebasti=C3=A1n=20Ram=C3=ADrez?= Date: Sat, 2 Mar 2019 19:54:52 +0400 Subject: [PATCH] :pencil2: Fix typos --- docs/alternatives.md | 4 ++-- docs/async.md | 2 +- docs/contributing.md | 2 +- docs/deployment.md | 2 +- docs/features.md | 6 +++--- docs/python-types.md | 2 +- docs/tutorial/extra-models.md | 2 +- docs/tutorial/first-steps.md | 2 +- docs/tutorial/handling-errors.md | 2 +- docs/tutorial/intro.md | 2 +- docs/tutorial/query-params-str-validations.md | 2 +- docs/tutorial/request-files.md | 2 +- docs/tutorial/request-forms.md | 2 +- docs/tutorial/response-model.md | 2 +- docs/tutorial/security/get-current-user.md | 2 +- docs/tutorial/security/simple-oauth2.md | 4 ++-- docs/tutorial/sql-databases.md | 2 +- docs/tutorial/using-request-directly.md | 2 +- 18 files changed, 22 insertions(+), 22 deletions(-) diff --git a/docs/alternatives.md b/docs/alternatives.md index 8bb52d4e2..dcf3cc493 100644 --- a/docs/alternatives.md +++ b/docs/alternatives.md @@ -123,7 +123,7 @@ There are several Flask REST frameworks, but after investing the time and work i ### Marshmallow -One of the main features needed by API systems is data "serialization" which is taking data from the code (Python) and converting it into something that can be sent through the network. For example, converting an object containing data from a database into a JSON object. Converting `datetime` objects into strings, etc. +One of the main features needed by API systems is data "serialization" which is taking data from the code (Python) and converting it into something that can be sent through the network. For example, converting an object containing data from a database into a JSON object. Converting `datetime` objects into strings, etc. Another big feature needed by APIs is data validation, making sure that the data is valid, given certain parameters. For example, that some field is an `int`, and not some random string. This is especially useful for incoming data. @@ -365,7 +365,7 @@ It is the recommended server for Starlette and **FastAPI**. !!! check "**FastAPI** recommends it as" The main web server to run **FastAPI** applications. - You can combine it with Gunicorn, to have an asynchronous multiprocess server. + You can combine it with Gunicorn, to have an asynchronous multi-process server. Check more details in the Deployment section. diff --git a/docs/async.md b/docs/async.md index ba6d1b647..6013d217e 100644 --- a/docs/async.md +++ b/docs/async.md @@ -391,7 +391,7 @@ Any other utility function that you call directly can be created with normal `de This is in contrast to the functions that FastAPI calls for you: *path operation functions* and dependencies. -If your utility funciton is a normal function with `def`, it will be called directly (as you write it in your code), not in a threadpool, if the function is created with `async def` then you should await for that function when you call it in your code. +If your utility function is a normal function with `def`, it will be called directly (as you write it in your code), not in a threadpool, if the function is created with `async def` then you should await for that function when you call it in your code. --- diff --git a/docs/contributing.md b/docs/contributing.md index 8ce812fb2..170d2aa03 100644 --- a/docs/contributing.md +++ b/docs/contributing.md @@ -74,7 +74,7 @@ All the documentation is in Markdown format in the directory `./docs`. Many of the tutorials have blocks of code. -In most of the cases, these blocks of code are actual complete applicactions that can be run as is. +In most of the cases, these blocks of code are actual complete applications that can be run as is. In fact, those blocks of code are not written inside the Markdown, they are Python files in the `./docs/src/` directory. diff --git a/docs/deployment.md b/docs/deployment.md index 717665032..69c3a05b3 100644 --- a/docs/deployment.md +++ b/docs/deployment.md @@ -157,7 +157,7 @@ Now, from a developer's perspective, here are several things to have in mind whi * It goes encrypted, but the encrypted contents are the same HTTP protocol. -It is a common practice to have one program/HTTP server runing in the server (the machine, host, etc) and managing all the HTTPS parts, sending the decrypted HTTP requests to the actual HTTP application running in the same server (the **FastAPI** application, in this case), take the HTTP response from the application, encrypt it using the appropriate certificate and sending it back to the client using HTTPS. This server is ofter called a TLS Termination Proxy. +It is a common practice to have one program/HTTP server running in the server (the machine, host, etc) and managing all the HTTPS parts, sending the decrypted HTTP requests to the actual HTTP application running in the same server (the **FastAPI** application, in this case), take the HTTP response from the application, encrypt it using the appropriate certificate and sending it back to the client using HTTPS. This server is ofter called a TLS Termination Proxy. ### Let's Encrypt diff --git a/docs/features.md b/docs/features.md index e6709c19e..58fd702c2 100644 --- a/docs/features.md +++ b/docs/features.md @@ -71,7 +71,7 @@ my_second_user: User = User(**second_user_data) ### Editor support -All the framework was designed to be easy and intuitive to use, all the decisons where tested on multiple editors even before starting development, to ensure the best development experience. +All the framework was designed to be easy and intuitive to use, all the decisions where tested on multiple editors even before starting development, to ensure the best development experience. In the last Python developer survey it was clear that the most used feature is "autocompletion". @@ -89,7 +89,7 @@ Here's how your editor might help you: ![editor support](img/pycharm-completion.png) -You will get completion in code you might even consider imposible before. As for example, the `price` key inside a JSON body (that could have been nested) that comes from a request. +You will get completion in code you might even consider impossible before. As for example, the `price` key inside a JSON body (that could have been nested) that comes from a request. No more typing the wrong key names, coming back and forth between docs, or scrolling up and down to find if you finally used `username` or `user_name`. @@ -201,4 +201,4 @@ With **FastAPI** you get all of **Pydantic**'s features (as FastAPI is based on * You can have deeply **nested JSON** objects and have them all validated and annotated. * **Extendible**: * Pydantic allows custom data types to be defined or you can extend validation with methods on a model decorated with the validator decorator. -* 100% test coverage. \ No newline at end of file +* 100% test coverage. diff --git a/docs/python-types.md b/docs/python-types.md index 9483d92a2..e5ea65442 100644 --- a/docs/python-types.md +++ b/docs/python-types.md @@ -49,7 +49,7 @@ But then you have to call "that method that converts the first letter to upper c Was it `upper`? Was it `uppercase`? `first_uppercase`? `capitalize`? -Then, you try with the old programer's friend, editor autocompletion. +Then, you try with the old programmer's friend, editor autocompletion. You type the first parameter of the function, `first_name`, then a dot (`.`) and then hit `Ctrl+Space` to trigger the completion. diff --git a/docs/tutorial/extra-models.md b/docs/tutorial/extra-models.md index 08507d900..04c20ade3 100644 --- a/docs/tutorial/extra-models.md +++ b/docs/tutorial/extra-models.md @@ -109,7 +109,7 @@ UserInDB(**user_in.dict()) So, we get a Pydantic model from the data in another Pydantic model. -#### Unrapping a `dict` and extra keywords +#### Unwrapping a `dict` and extra keywords And then adding the extra keyword argument `hashed_password=hashed_password`, like in: diff --git a/docs/tutorial/first-steps.md b/docs/tutorial/first-steps.md index cf0809692..a0da2eb67 100644 --- a/docs/tutorial/first-steps.md +++ b/docs/tutorial/first-steps.md @@ -69,7 +69,7 @@ A "schema" is a definition or description of something. Not the code that implem In this case, OpenAPI is a specification that dictates how to define a schema of your API. -This OpenAPI schema would include your API paths, the posible parameters they take, etc. +This OpenAPI schema would include your API paths, the possible parameters they take, etc. #### Data "schema" diff --git a/docs/tutorial/handling-errors.md b/docs/tutorial/handling-errors.md index 1c143da29..d0557c4ab 100644 --- a/docs/tutorial/handling-errors.md +++ b/docs/tutorial/handling-errors.md @@ -96,4 +96,4 @@ For example, you could override the default exception handler with: !!! info Note that in this example we set the exception handler with Starlette's `HTTPException` instead of FastAPI's `HTTPException`. - This would ensure that if you use a plug-in or any other third-party tool that raises Starlette's `HTTPException` directly, it will be catched by your exception handler. + This would ensure that if you use a plug-in or any other third-party tool that raises Starlette's `HTTPException` directly, it will be caught by your exception handler. diff --git a/docs/tutorial/intro.md b/docs/tutorial/intro.md index 2faead19d..c864e42f6 100644 --- a/docs/tutorial/intro.md +++ b/docs/tutorial/intro.md @@ -1,6 +1,6 @@ This tutorial shows you how to use **FastAPI** with all its features, step by step. -Eeach section gradually builds on the previous ones, but it's structured to separate topics, so that you can go directly to any specific one to solve your specific API needs. +Each section gradually builds on the previous ones, but it's structured to separate topics, so that you can go directly to any specific one to solve your specific API needs. It is also built to work as a future reference. diff --git a/docs/tutorial/query-params-str-validations.md b/docs/tutorial/query-params-str-validations.md index a44099aea..9189a6a50 100644 --- a/docs/tutorial/query-params-str-validations.md +++ b/docs/tutorial/query-params-str-validations.md @@ -1,4 +1,4 @@ -**FastAPI** allows you to declare additonal information and validation for your parameters. +**FastAPI** allows you to declare additional information and validation for your parameters. Let's take this application as example: diff --git a/docs/tutorial/request-files.md b/docs/tutorial/request-files.md index 835468ca4..e97fa9556 100644 --- a/docs/tutorial/request-files.md +++ b/docs/tutorial/request-files.md @@ -35,7 +35,7 @@ The way HTML forms (`
`) sends the data to the server normally uses But when the form includes files, it is encoded as `multipart/form-data`. If you use `File`, **FastAPI** will know it has to get the files from the correct part of the body. - If you want to read more about these encondings and form fields, head to the MDN web docs for POST. + If you want to read more about these encodings and form fields, head to the MDN web docs for POST. !!! warning diff --git a/docs/tutorial/request-forms.md b/docs/tutorial/request-forms.md index 1f0d9d5d3..4fe88fa49 100644 --- a/docs/tutorial/request-forms.md +++ b/docs/tutorial/request-forms.md @@ -39,7 +39,7 @@ The way HTML forms (`
`) sends the data to the server normally uses But when the form includes files, it is encoded as `multipart/form-data`. You'll read about handling files in the next chapter. - If you want to read more about these encondings and form fields, head to the MDN web docs for POST. + If you want to read more about these encodings and form fields, head to the MDN web docs for POST. !!! warning diff --git a/docs/tutorial/response-model.md b/docs/tutorial/response-model.md index 2dce3a863..128206a40 100644 --- a/docs/tutorial/response-model.md +++ b/docs/tutorial/response-model.md @@ -40,7 +40,7 @@ And we are using this model to declare our input and the same model to declare o Now, whenever a browser is creating a user with a password, the API will return the same password in the response. -In this case, it might not be a problem, becase the user himself is sending the password. +In this case, it might not be a problem, because the user himself is sending the password. But if we use the same model for another path operation, we could be sending the passwords of our users to every client. diff --git a/docs/tutorial/security/get-current-user.md b/docs/tutorial/security/get-current-user.md index 88099fb27..494e4f26f 100644 --- a/docs/tutorial/security/get-current-user.md +++ b/docs/tutorial/security/get-current-user.md @@ -30,7 +30,7 @@ So, we can have sub-dependencies using `Security` too. `get_current_user` will have a `Security` dependency with the same `oauth2_scheme` we created before. -The same as we were doing before in the path operation direclty, our new dependency will receive a `token` as a `str` from the `Security` dependency: +The same as we were doing before in the path operation directly, our new dependency will receive a `token` as a `str` from the `Security` dependency: ```Python hl_lines="25" {!./src/security/tutorial002.py!} diff --git a/docs/tutorial/security/simple-oauth2.md b/docs/tutorial/security/simple-oauth2.md index 13d44b967..2068a6e83 100644 --- a/docs/tutorial/security/simple-oauth2.md +++ b/docs/tutorial/security/simple-oauth2.md @@ -24,14 +24,14 @@ The form field name is `scope` (in singular), but it is actually a long string w Each "scope" is just a string (without spaces). -They are normally used to declare specific security permissions, for exampe: +They are normally used to declare specific security permissions, for example: * `"users:read"` or `"users:write"` are common examples. * `instagram_basic` is used by Facebook / Instagram. * `https://www.googleapis.com/auth/drive` is used by Google. !!! info - In OAuth2 a "scope" is just a string that declares a specific permision required. + In OAuth2 a "scope" is just a string that declares a specific permission required. It doesn't matter if it has other characters like `:`, or if it is a URL. diff --git a/docs/tutorial/sql-databases.md b/docs/tutorial/sql-databases.md index ab7719f95..57c3ec526 100644 --- a/docs/tutorial/sql-databases.md +++ b/docs/tutorial/sql-databases.md @@ -300,7 +300,7 @@ That's something that you can improve in this example application, here's the cu } ``` -## Interact with the database direclty +## Interact with the database directly If you want to explore the SQLite database (file) directly, independently of FastAPI, to debug its contents, add tables, columns, records, modify data, etc. you can use DB Browser for SQLite. diff --git a/docs/tutorial/using-request-directly.md b/docs/tutorial/using-request-directly.md index fe4f93b9c..1c00731eb 100644 --- a/docs/tutorial/using-request-directly.md +++ b/docs/tutorial/using-request-directly.md @@ -21,7 +21,7 @@ Although any other parameter declared normally (for example, the body with a Pyd But there are specific cases where it's useful to get the `Request` object. -## Use the `Request` object direclty +## Use the `Request` object directly Let's imagine you want to get the client's IP address/host inside of your *path operation function*.