Skip to content
This repository has been archived by the owner on Jun 26, 2020. It is now read-only.

Commit

Permalink
Fixed API docs.
Browse files Browse the repository at this point in the history
  • Loading branch information
ma2ciek committed Aug 12, 2019
1 parent d57ff5a commit 09671f6
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/model/element.js
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ import isIterable from '@ckeditor/ckeditor5-utils/src/isiterable';
*
* **Important**: see {@link module:engine/model/node~Node} to read about restrictions using `Element` and `Node` API.
*
* @extends {module:engine/model/node~Node}
* @extends module:engine/model/node~Node
*/
export default class Element extends Node {
/**
Expand Down
2 changes: 1 addition & 1 deletion src/model/text.js
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ import Node from './node';
* this behavior, keeping references to `Text` is not recommended. Instead, consider creating
* {@link module:engine/model/liveposition~LivePosition live position} placed before the text node.
*
* @extends {module:engine/model/node~Node}
* @extends module:engine/model/node~Node
*/
export default class Text extends Node {
/**
Expand Down
2 changes: 1 addition & 1 deletion src/view/observer/fakeselectionobserver.js
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ import { debounce } from 'lodash-es';
* Fires {@link module:engine/view/document~Document#event:selectionChange selectionChange event} simulating natural behaviour of
* {@link module:engine/view/observer/selectionobserver~SelectionObserver SelectionObserver}.
*
* @extends module:engine/view/observer/observer~Observer.Observer
* @extends module:engine/view/observer/observer~Observer
*/
export default class FakeSelectionObserver extends Observer {
/**
Expand Down

0 comments on commit 09671f6

Please sign in to comment.