diff --git a/docs/installation.md b/docs/installation.md index 6d90c635..6ee6b19a 100644 --- a/docs/installation.md +++ b/docs/installation.md @@ -69,7 +69,7 @@ Check [Editor.js's community](https://github.com/editor-js/) to see Tools exampl ## Create Editor instance Create an instance of Editor.js and pass [Configuration Object](../src/types-internal/editor-config.ts). -At least the `holderId` option is required. +At least the `holder` option is required. ```html
@@ -92,7 +92,7 @@ var editor = new EditorJS({ /** * Create a holder for the Editor and pass its ID */ - holderId : 'editorjs', + holder : 'editorjs', /** * Available Tools list. diff --git a/docs/tools.md b/docs/tools.md index fef129ed..7cc4fd21 100644 --- a/docs/tools.md +++ b/docs/tools.md @@ -70,7 +70,7 @@ to the `tools` property of Editor Config. ```javascript var editor = new EditorJS({ - holderId : 'editorjs', + holder : 'editorjs', tools: { text: { class: Text,