Explorar el Código

Fix missing comma in vuejs editorConfig documentation

There is a missing comma after the separator
Jeff Beagley hace 6 años
padre
commit
6b82224b4d
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. 1 1
      docs/builds/guides/frameworks/vuejs.md

+ 1 - 1
docs/builds/guides/frameworks/vuejs.md

@@ -516,7 +516,7 @@ Specifies the {@link module:core/editor/editorconfig~EditorConfig configuration}
 			return {
 				editor: ClassicEditor,
 				editorConfig: {
-					toolbar: [ 'bold', 'italic', '|' 'link' ]
+					toolbar: [ 'bold', 'italic', '|', 'link' ]
 				}
 			};
 		}