Skip to content

Commit 0e581e1

Browse files
committed
fix(docs): remove extra semicolons in express.json.md
1 parent b6c6192 commit 0e581e1

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

_includes/api/en/4x/express.json.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ The following table describes the properties of the optional `options` object.
4545

4646
```js
4747
// Limit 5MB for /upload
48-
app.use('/upload', express.json({ limit: '5mb' }));
48+
app.use('/upload', express.json({ limit: '5mb' }))
4949

5050
// Default limit for other routes
51-
app.use(express.json());
51+
app.use(express.json())

0 commit comments

Comments
 (0)