]> git.ipfire.org Git - thirdparty/fastapi/fastapi.git/commitdiff
:pencil2: fixed small typo /tutorial/extra-models.md (#159)
authorDaniel Michaels <32674032+danielmichaels@users.noreply.github.com>
Tue, 16 Apr 2019 18:20:03 +0000 (04:20 +1000)
committerSebastián Ramírez <tiangolo@gmail.com>
Tue, 16 Apr 2019 18:20:03 +0000 (22:20 +0400)
docs/tutorial/extra-models.md

index 34e6ff0d8175f4de5c2f3e156a44b55b05e23264..81dec0c5eebd9f9b3c4a25103e66e6da79ba39ff 100644 (file)
@@ -3,7 +3,7 @@ Continuing with the previous example, it will be common to have more than one re
 This is especially the case for user models, because:
 
 * The **input model** needs to be able to have a password.
-* The **output model** should do not have a password.
+* The **output model** should not have a password.
 * The **database model** would probably need to have a hashed password.
 
 !!! danger