Skip to content

Commit

Permalink
update docs
Browse files Browse the repository at this point in the history
  • Loading branch information
VishnuSanal committed Sep 2, 2024
1 parent 27cf6ac commit d8d9ee2
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions docs_src/src/pages/documentation/api_reference/openapi.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -224,7 +224,7 @@ We support all the params mentioned in the latest OpenAPI specifications (https:
```python {{ title: 'untyped' }}
class Initial(TypedDict):
is_present: bool
initial: Optional[str]
letter: Optional[str]


class FullName(TypedDict):
Expand All @@ -248,7 +248,7 @@ def create_item(request, body=CreateItemBody):
```python {{ title: 'typed' }}
class Initial(TypedDict):
is_present: bool
initial: Optional[str]
letter: Optional[str]


class FullName(TypedDict):
Expand Down
4 changes: 2 additions & 2 deletions docs_src/src/pages/documentation/example_app/openapi.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -182,7 +182,7 @@ We support all the params mentioned in the latest OpenAPI specifications (https:
```python {{ title: 'untyped' }}
class Initial(TypedDict):
is_present: bool
initial: Optional[str]
letter: Optional[str]


class FullName(TypedDict):
Expand All @@ -206,7 +206,7 @@ def create_item(request, body=CreateItemBody):
```python {{ title: 'typed' }}
class Initial(TypedDict):
is_present: bool
initial: Optional[str]
letter: Optional[str]


class FullName(TypedDict):
Expand Down

0 comments on commit d8d9ee2

Please sign in to comment.