]> git.ipfire.org Git - thirdparty/fastapi/fastapi.git/commitdiff
✏️ Fix typo in `docs/en/docs/tutorial/extra-models.md` (#11329)
authorAlejandra <90076947+alejsdev@users.noreply.github.com>
Thu, 21 Mar 2024 21:54:22 +0000 (16:54 -0500)
committerGitHub <noreply@github.com>
Thu, 21 Mar 2024 21:54:22 +0000 (16:54 -0500)
docs/en/docs/tutorial/extra-models.md

index d83b6bc8594bbdce99246df4cd76f0bbaddfbf45..ad253a3365e2fa1113db100d083c2784d8e268a4 100644 (file)
@@ -120,7 +120,7 @@ would be equivalent to:
 UserInDB(**user_in.dict())
 ```
 
-...because `user_in.dict()` is a `dict`, and then we make Python "unwrap" it by passing it to `UserInDB` prepended with `**`.
+...because `user_in.dict()` is a `dict`, and then we make Python "unwrap" it by passing it to `UserInDB` prefixed with `**`.
 
 So, we get a Pydantic model from the data in another Pydantic model.