From 4aa581eb726bdb85a2fbc869a0878eb3c4e20bae Mon Sep 17 00:00:00 2001 From: Manuel Spigolon Date: Sun, 22 Aug 2021 15:10:35 +0200 Subject: [PATCH] docs: fix syntax --- 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 ]