Procházet zdrojové kódy

Merge pull request #5711 from ckeditor/i/angular/74

Docs: Fixed Angular quick start guide. Closes ckeditor/ckeditor5-angular#74.
Anna Tomanek před 6 roky
rodič
revize
5118dda6b5
1 změnil soubory, kde provedl 2 přidání a 2 odebrání
  1. 2 2
      docs/builds/guides/frameworks/angular.md

+ 2 - 2
docs/builds/guides/frameworks/angular.md

@@ -32,7 +32,7 @@ Assuming that you picked [`@ckeditor/ckeditor5-build-classic`](https://www.npmjs
 npm install --save @ckeditor/ckeditor5-build-classic
 ```
 
-Now, add `CKEditorModule` to your application module imports:
+Now, add `CKEditorModule` to modules whose components will be using the `<ckeditor>` component in their templates.
 
 ```ts
 import { CKEditorModule } from '@ckeditor/ckeditor5-angular';
@@ -46,7 +46,7 @@ import { CKEditorModule } from '@ckeditor/ckeditor5-angular';
 } )
 ```
 
-Import the editor build in your Angular component and assign it to a `public` property so it becomes accessible in the template:
+Import the editor build in your Angular component and assign it to a `public` property to make it accessible from the template:
 
 ```ts
 import * as ClassicEditor from '@ckeditor/ckeditor5-build-classic';