Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions website/docs/how-to-guides/parsing.json-strings.md
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
# Decoding JSON from Headers, Query Parameters, and URL Parameters

Though we know headers, url parameters, and query parameters will be received as a
Though we know headers, URL parameters, and query parameters will be received as a
`string` or `string[]` value, due to a limitation in api-ts, `httpRequest` only accepts
codecs that decode values starting from the `unknown` type. Consequently, decoding a
header, url parameter, or query parameter with a codec like `JsonFromString`, which can
header, URL parameter, or query parameter with a codec like `JsonFromString`, which can
only decode values typed as `string`, will produce a error like:

```
Expand Down