Skip to content

Commit 59811c0

Browse files
authored
Update example to use correct parser (fastify#5996)
Signed-off-by: Stanislav (Stanley) Modrak <[email protected]>
1 parent bcb8321 commit 59811c0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

docs/Reference/Server.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -620,7 +620,7 @@ You can also use Fastify's default parser but change some handling behavior,
620620
like the example below for case insensitive keys and values:
621621

622622
```js
623-
const querystring = require('node:querystring')
623+
const querystring = require('fast-querystring')
624624
const fastify = require('fastify')({
625625
querystringParser: str => querystring.parse(str.toLowerCase())
626626
})

0 commit comments

Comments
 (0)