Browse Source

Docs: Corrected incorrect and missing @mixes.

Piotrek Koszuliński 7 years ago
parent
commit
00155e722f

+ 2 - 0
packages/ckeditor5-engine/src/model/documentselection.js

@@ -45,6 +45,8 @@ const storePrefix = 'selection:';
  * that are inside {@link module:engine/model/documentfragment~DocumentFragment document fragment}.
  * If you need to represent a selection in document fragment,
  * use {@link module:engine/model/selection~Selection Selection class} instead.
+ *
+ * @mixes module:utils/emittermixin~EmitterMixin
  */
 export default class DocumentSelection {
 	/**

+ 1 - 1
packages/ckeditor5-engine/src/model/selection.js

@@ -23,7 +23,7 @@ import isIterable from '@ckeditor/ckeditor5-utils/src/isiterable';
  * Additionally, selection may have its own attributes (think – whether text typed in in this selection
  * should have those attributes – e.g. whether you type a bolded text).
  *
- * @mixes {module:utils/emittermixin~EmitterMixin}
+ * @mixes module:utils/emittermixin~EmitterMixin
  */
 export default class Selection {
 	/**