Browse Source

Merge pull request #823 from ZapevalovAnton/patch-1

Docs: Fixed copy-paste typo.
Piotrek Koszuliński 7 years ago
parent
commit
58b0612d8b
1 changed files with 1 additions and 1 deletions
  1. 1 1
      docs/builds/guides/integration/advanced-setup.md

+ 1 - 1
docs/builds/guides/integration/advanced-setup.md

@@ -218,7 +218,7 @@ This module will export an editor creator class which has all the plugins and co
 The second variant how to run the editor is to use the creator class directly, without creating an intermediary subclass. The above code would translate to:
 The second variant how to run the editor is to use the creator class directly, without creating an intermediary subclass. The above code would translate to:
 
 
 ```js
 ```js
-import ClassicEditorBase from '@ckeditor/ckeditor5-editor-classic/src/classiceditor';
+import ClassicEditor from '@ckeditor/ckeditor5-editor-classic/src/classiceditor';
 import EssentialsPlugin from '@ckeditor/ckeditor5-essentials/src/essentials';
 import EssentialsPlugin from '@ckeditor/ckeditor5-essentials/src/essentials';
 import AutoformatPlugin from '@ckeditor/ckeditor5-autoformat/src/autoformat';
 import AutoformatPlugin from '@ckeditor/ckeditor5-autoformat/src/autoformat';
 import BoldPlugin from '@ckeditor/ckeditor5-basic-styles/src/bold';
 import BoldPlugin from '@ckeditor/ckeditor5-basic-styles/src/bold';