Skip to content

Commit

Permalink
Merge pull request #17359 from ckeditor/ck/fix-docs
Browse files Browse the repository at this point in the history
Fix incorrect `inheritDoc` comment above editor name.
  • Loading branch information
Mati365 authored Oct 30, 2024
2 parents 5cf9f91 + fe4f29e commit 25416ab
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion packages/ckeditor5-editor-balloon/src/ballooneditor.ts
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ import { isElement as _isElement } from 'lodash-es';
*/
export default class BalloonEditor extends /* #__PURE__ */ ElementApiMixin( Editor ) {
/**
* @inheritdoc
* @inheritDoc
*/
public static override get editorName(): 'BalloonEditor' {
return 'BalloonEditor';
Expand Down
2 changes: 1 addition & 1 deletion packages/ckeditor5-editor-classic/src/classiceditor.ts
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ import { isElement as _isElement } from 'lodash-es';
*/
export default class ClassicEditor extends /* #__PURE__ */ ElementApiMixin( Editor ) {
/**
* @inheritdoc
* @inheritDoc
*/
public static override get editorName(): 'ClassicEditor' {
return 'ClassicEditor';
Expand Down
2 changes: 1 addition & 1 deletion packages/ckeditor5-editor-decoupled/src/decouplededitor.ts
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ import { isElement as _isElement } from 'lodash-es';
*/
export default class DecoupledEditor extends /* #__PURE__ */ ElementApiMixin( Editor ) {
/**
* @inheritdoc
* @inheritDoc
*/
public static override get editorName(): 'DecoupledEditor' {
return 'DecoupledEditor';
Expand Down
2 changes: 1 addition & 1 deletion packages/ckeditor5-editor-inline/src/inlineeditor.ts
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ import { isElement as _isElement } from 'lodash-es';
*/
export default class InlineEditor extends /* #__PURE__ */ ElementApiMixin( Editor ) {
/**
* @inheritdoc
* @inheritDoc
*/
public static override get editorName(): 'InlineEditor' {
return 'InlineEditor';
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ import {
*/
export default class MultiRootEditor extends Editor {
/**
* @inheritdoc
* @inheritDoc
*/
public static override get editorName(): 'MultiRootEditor' {
return 'MultiRootEditor';
Expand Down

0 comments on commit 25416ab

Please sign in to comment.