Fix typo in requests guide: 'Synax' -> 'Syntax'.

This commit is contained in:
Jeremy Kaplan 2021-07-24 17:00:11 -07:00 committed by Jeb Rosen
parent 31d06ee714
commit 26ca47b03d
1 changed files with 1 additions and 1 deletions

View File

@ -1704,7 +1704,7 @@ Query strings are URL-encoded forms that appear in the URL of a request. Query
parameters are declared like path parameters but otherwise handled like regular
URL-encoded form fields. The table below summarizes the analogy:
| Path Synax | Query Syntax | Path Type Bound | Query Type Bound |
| Path Syntax | Query Syntax | Path Type Bound | Query Type Bound |
|-------------|--------------|------------------|------------------|
| `<param>` | `<param>` | [`FromParam`] | [`FromForm`] |
| `<param..>` | `<param..>` | [`FromSegments`] | [`FromForm`] |