Skip to content

Commit

Permalink
Merge pull request #1091 from Nirmalkumar6112/master
Browse files Browse the repository at this point in the history
Fix #1088 : Inconsistency in indentation
  • Loading branch information
vitalik committed Apr 24, 2024
2 parents 850fe5f + 0a3c1ea commit 4610bea
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/docs/guides/input/path-params.md
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ Django's `path` converter allows you to handle path-like parameters:
```python hl_lines="1"
@api.get('/dir/{path:value}')
def someview(request, value: str):
return value
return value
```
you can query this operation with `/dir/some/path/with-slashes` and your `value` will be equal to `some/path/with-slashes`

Expand Down

0 comments on commit 4610bea

Please sign in to comment.