Skip to content

Commit

Permalink
Fix docs
Browse files Browse the repository at this point in the history
  • Loading branch information
DawidKossowski committed Sep 1, 2023
1 parent e889f61 commit 6fca651
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion packages/ckeditor5-ui/src/input/inputview.ts
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ import '../../theme/components/input/input.css';
import InputBase from './inputbase';

/**
* The base input view class.
* The input view class.
*/
export default class InputView extends InputBase {
/**
Expand Down
4 changes: 2 additions & 2 deletions packages/ckeditor5-ui/src/textarea/textareaview.ts
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ import '../../theme/components/input/input.css';
import InputBase from '../input/inputbase';

/**
* The base input view class.
* The textarea view class.
*/
export default class TextareaView extends InputBase<HTMLTextAreaElement> {
/**
Expand Down Expand Up @@ -57,7 +57,7 @@ export default class TextareaView extends InputBase<HTMLTextAreaElement> {
* Fired when the user types in the textarea. Corresponds to the native
* DOM `input` event.
*
* @eventName ~InputView#input
* @eventName ~TextareaView#input
*/
export type TextareaInputEvent = {
name: 'input';
Expand Down

0 comments on commit 6fca651

Please sign in to comment.