From: Marcelo Trylesinski Date: Wed, 21 Jul 2021 12:14:34 +0000 (+0200) Subject: ✏️ Fix typo on docstring in datastructures file (#2887) X-Git-Tag: 0.67.0~19 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=1ce7258a018d0ab190b4b80683f938798aa8577f;p=thirdparty%2Ffastapi%2Ffastapi.git ✏️ Fix typo on docstring in datastructures file (#2887) --- diff --git a/fastapi/datastructures.py b/fastapi/datastructures.py index f22409c517..6a44a7df4f 100644 --- a/fastapi/datastructures.py +++ b/fastapi/datastructures.py @@ -21,7 +21,7 @@ class DefaultPlaceholder: You shouldn't use this class directly. It's used internally to recognize when a default value has been overwritten, even - if the overriden default value was truthy. + if the overridden default value was truthy. """ def __init__(self, value: Any): @@ -42,6 +42,6 @@ def Default(value: DefaultType) -> DefaultType: You shouldn't use this function directly. It's used internally to recognize when a default value has been overwritten, even - if the overriden default value was truthy. + if the overridden default value was truthy. """ return DefaultPlaceholder(value) # type: ignore