Skip to content

Commit

Permalink
Fix doclet.
Browse files Browse the repository at this point in the history
  • Loading branch information
niegowski committed Dec 17, 2024
1 parent d671264 commit 08e7d87
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/ckeditor5-engine/src/view/element.ts
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ export default class Element extends Node {
/**
* Set of classes associated with element instance.
*
* Note that this is just an alias for this._attrs.get( 'class' );
* Note that this is just an alias for `this._attrs.get( 'class' );`
*/
private get _classes(): TokenList | undefined {
return this._attrs.get( 'class' ) as TokenList | undefined;
Expand All @@ -91,7 +91,7 @@ export default class Element extends Node {
/**
* Normalized styles.
*
* Note that this is just an alias for this._attrs.get( 'style' );
* Note that this is just an alias for `this._attrs.get( 'style' );`
*/
private get _styles(): StylesMap | undefined {
return this._attrs.get( 'style' ) as StylesMap | undefined;
Expand Down

0 comments on commit 08e7d87

Please sign in to comment.