Explorar o código

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

Docs: Fixed Angular quick start guide. Closes ckeditor/ckeditor5-angular#74.
Anna Tomanek %!s(int64=6) %!d(string=hai) anos
pai
achega
5118dda6b5
Modificáronse 1 ficheiros con 2 adicións e 2 borrados
  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';