Browse Source

Merge branch 't/450' of github.com:ckeditor/ckeditor5-engine into t/450

Kamil Piechaczek 9 years ago
parent
commit
b5d55144b4
1 changed files with 1 additions and 1 deletions
  1. 1 1
      packages/ckeditor5-engine/src/view/document.js

+ 1 - 1
packages/ckeditor5-engine/src/view/document.js

@@ -162,7 +162,7 @@ export default class Document {
 	 *		document.createRoot( 'body' );
 	 *		document.attachDomRoot( document.querySelector( 'body#editor' ) );
 	 *
-	 * In both cases, rootName is always transform to lower case.
+	 * In both cases, {@link engine.view.RootEditableElement#name element name} is always transformed to lower case.
 	 *
 	 * @param {Element|String} domRoot DOM root element or the tag name of view root element if the DOM element will be
 	 * attached later.