Browse Source

✏️ Fix typo on docstring in datastructures file (#2887)

pull/3577/head
Marcelo Trylesinski 4 years ago
committed by GitHub
parent
commit
1ce7258a01
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 4
      fastapi/datastructures.py

4
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

Loading…
Cancel
Save