Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

docs: fix typo in full-featured-editor.md #314

Merged
merged 1 commit into from
Jan 19, 2021
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions docs/full-featured-editor.md
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ import plugins from './plugins';
text_color: 'Text Color',
background_color: 'Background Color',

// pupups, forms, others...
// popups, forms, others...
url: 'URL',
text: 'Text',
openInNewTab: 'Open in new tab',
Expand All @@ -76,7 +76,7 @@ export class AppModule {}
### app.component.ts

```ts
import { Component, OnInit, OnDestory, ViewEncapsulation } from '@angular/core';
import { Component, OnInit, OnDestroy, ViewEncapsulation } from '@angular/core';
import { AbstractControl, FormControl, FormGroup } from '@angular/forms';
import { Validators, Editor, Toolbar } from 'ngx-editor';

Expand All @@ -88,7 +88,7 @@ import plugins from './plugins';
styleUrls: ['app.component.scss'],
encapsulation: ViewEncapsulation.None,
})
export class AppComponent implements OnInit, OnDestory {
export class AppComponent implements OnInit, OnDestroy {
editor: Editor;
toolbar: Toolbar = [
['bold', 'italic'],
Expand Down