소스 검색

Fix missing comma in vuejs editorConfig documentation

There is a missing comma after the separator
Jeff Beagley 6 년 전
부모
커밋
6b82224b4d
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  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' ]
 				}
 			};
 		}