Skip to content

Commit fbd375f

Browse files
fixup: fix link semantics
1 parent d91825b commit fbd375f

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

_includes/api/en/5x/req-query.md

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<h3 id='req.query'>req.query</h3>
22

33
This property is an object containing a property for each query string parameter in the route.
4-
When [`query parser`](#app.settings.table) is set to disabled, it is an empty object `{}`, otherwise it is the result of the configured query parser.
4+
When [query parser](#app.settings.table) is set to disabled, it is an empty object `{}`, otherwise it is the result of the configured query parser.
55

66
<div class="doc-box doc-warn" markdown="1">
77
As `req.query`'s shape is based on user-controlled input, all properties and values in this object are untrusted and should be validated before trusting. For example, `req.query.foo.toString()` may fail in multiple ways, for example `foo` may not be there or may not be a string, and `toString` may not be a function and instead a string or other user-input.
@@ -27,4 +27,3 @@ console.dir(req.query.color)
2727
// => [blue, black, red]
2828
```
2929

30-
{% include api/en/5x/app-settings.md %}

0 commit comments

Comments
 (0)