Fix typos, grammar and spelling mistakes in docs (#584)

This commit is contained in:
silllli
2021-04-02 12:47:57 +02:00
committed by GitHub
parent e885525497
commit 9967053ae0
5 changed files with 9 additions and 9 deletions

View File

@ -34,7 +34,7 @@ app.include_router(
## After register
You can provide a custom function to be called after a successful registration. It is called with **two argument**: the **user** that has just registered, and the original **`Request` object**.
You can provide a custom function to be called after a successful registration. It is called with **two arguments**: the **user** that has just registered, and the original **`Request` object**.
Typically, you'll want to **send a welcome e-mail** or add it to your marketing analytics pipeline.
@ -51,4 +51,4 @@ app.include_router(
prefix="/auth",
tags=["auth"],
)
```
```

View File

@ -45,7 +45,7 @@ You can provide a custom function to be called after a successful update user re
* The dictionary containing the updated fields.
* The original **`Request` object**.
It may be useful if you wish for example update your user in a data analytics or customer success platform.
It may be useful, for example, if you wish to update your user in a data analytics or customer success platform.
You can define it as an `async` or standard method.