docs(): fix occurred typo (#19916)

* docs(searchbar): typo ocurred / occurred

* docs(textarea): occurred typo

* docs(input): occurred typo

* docs(regenerate): occurred typo fix
This commit is contained in:
Matthew Harris
2019-11-18 14:20:21 +00:00
committed by Liam DeBeasi
parent fc4bb2db5c
commit 9e9f72a87f
7 changed files with 14 additions and 14 deletions

View File

@@ -219,7 +219,7 @@ export const TextAreaExample: React.FC = () => (
| `ionBlur` | Emitted when the input loses focus. | `CustomEvent<void>` |
| `ionChange` | Emitted when the input value has changed. | `CustomEvent<TextareaChangeEventDetail>` |
| `ionFocus` | Emitted when the input has focus. | `CustomEvent<void>` |
| `ionInput` | Emitted when a keyboard input ocurred. | `CustomEvent<KeyboardEvent>` |
| `ionInput` | Emitted when a keyboard input occurred. | `CustomEvent<KeyboardEvent>` |
## Methods

View File

@@ -149,7 +149,7 @@ export class Textarea implements ComponentInterface {
@Event() ionChange!: EventEmitter<TextareaChangeEventDetail>;
/**
* Emitted when a keyboard input ocurred.
* Emitted when a keyboard input occurred.
*/
@Event() ionInput!: EventEmitter<KeyboardEvent>;