From fd359a031a192c818fad220ad8a295aaf156cabd Mon Sep 17 00:00:00 2001 From: Manuel Spigolon Date: Sun, 22 Aug 2021 15:36:58 +0200 Subject: [PATCH] docs: fix syntax (#3276) --- docs/Server.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/Server.md b/docs/Server.md index 889dc1ca01..159a68af05 100644 --- a/docs/Server.md +++ b/docs/Server.md @@ -426,8 +426,8 @@ const fastify = require('fastify')({ nullable: false // Refer to [ajv options](https://ajv.js.org/#options) }, plugins: [ - require('ajv-merge-patch') - [require('ajv-keywords'), 'instanceof']; + require('ajv-merge-patch'), + [require('ajv-keywords'), 'instanceof'] // Usage: [plugin, pluginOptions] - Plugin with options // Usage: plugin - Plugin without options ]