From a77232b2fc6d18446d31728b097fd7f9ab286221 Mon Sep 17 00:00:00 2001 From: Tim Hoogendijk Date: Sun, 22 Aug 2021 19:31:28 +0200 Subject: [PATCH] Added a missing comma --- src/editor/index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/editor/index.js b/src/editor/index.js index 28bc4ef8a..e810234d5 100644 --- a/src/editor/index.js +++ b/src/editor/index.js @@ -313,7 +313,7 @@ export default (config = {}) => { * editor.setStyle('.cls{color: red}'); * //or * editor.setStyle({ - * selectors: ['cls'] + * selectors: ['cls'], * style: { color: 'red' } * }); */