From 82424ac83b25ee466e4fb283d882342677f30ad7 Mon Sep 17 00:00:00 2001 From: Frank Sung Date: Wed, 12 May 2021 00:23:41 +0800 Subject: [PATCH] Update structure.md --- docs/guide/structure.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/guide/structure.md b/docs/guide/structure.md index 499b0b14..434434cd 100644 --- a/docs/guide/structure.md +++ b/docs/guide/structure.md @@ -34,7 +34,7 @@ server.get('*', (req, res) => { renderer.renderToString(app, (err, html) => { // handle error... - res.end(html) + res.send(html) }) }) ```