From 26ca47b03dcfc115b7076367d0c65ad3c61fdb2d Mon Sep 17 00:00:00 2001 From: Jeremy Kaplan Date: Sat, 24 Jul 2021 17:00:11 -0700 Subject: [PATCH] Fix typo in requests guide: 'Synax' -> 'Syntax'. --- site/guide/4-requests.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/site/guide/4-requests.md b/site/guide/4-requests.md index 7004df0c..384bed37 100644 --- a/site/guide/4-requests.md +++ b/site/guide/4-requests.md @@ -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 | |-------------|--------------|------------------|------------------| | `` | `` | [`FromParam`] | [`FromForm`] | | `` | `` | [`FromSegments`] | [`FromForm`] |