8
0
Просмотр исходного кода

Docs: Frameworks Overview corrected. [skip ci]

Anna Tomanek 7 лет назад
Родитель
Сommit
c7fc449bf7
1 измененных файлов с 9 добавлено и 9 удалено
  1. 9 9
      docs/builds/guides/frameworks/overview.md

+ 9 - 9
docs/builds/guides/frameworks/overview.md

@@ -8,7 +8,7 @@ menu-title: Overview
 
 ## Is CKEditor 5 compatible with framework XYZ?
 
-Yes. CKEditor 5 is compatible with every JavaScript framework that we have heard of so far. CKEditor 5 is a JavaScript component (a pretty complex one but still) and does not require any uncommon techniques or technologies to be used. Threfore, unless the framework that you use has very untypical limitations, CKEditor 5 is compatible with it.
+Yes. CKEditor 5 is compatible with every JavaScript framework that we have heard of so far. CKEditor 5 is a JavaScript component (a pretty complex one but still) and does not require any uncommon techniques or technologies to be used. Threfore, unless the framework that you use has very not typical limitations, CKEditor 5 is compatible with it.
 
 > How do I use CKEditor 5 with my framework?
 
@@ -18,11 +18,11 @@ When checking how to integrate CKEditor 5 with your framework you can follow the
 
 1. **Check whether an [official integration](#official-integrations) exists.**
 
-	There are two official integrations so far for {@link builds/guides/frameworks/react React} and for {@link builds/guides/frameworks/angular Angular 2+}.
+	There are two official integrations so far: for {@link builds/guides/frameworks/react React} and for {@link builds/guides/frameworks/angular Angular 2+}.
 2. **If not, search for community-driven integrations.** Most of them are available on [npm](https://www.npmjs.com/).
 3. **If none exists, integrate CKEditor 5 with your framework yourself.**
 
-	CKEditor 5 offers {@link builds/guides/overview ready to use builds} which expose a {@link builds/guides/integration/basic-api rich JavaScript API} which you can use to {@link builds/guides/integration/basic-api#creating-an-editor create editors} and {@link builds/guides/integration/basic-api#interacting-with-the-editor control them}.
+	CKEditor 5 offers {@link builds/guides/overview ready-to-use builds} that expose a {@link builds/guides/integration/basic-api rich JavaScript API} which you can use to {@link builds/guides/integration/basic-api#creating-an-editor create editors} and {@link builds/guides/integration/basic-api#interacting-with-the-editor control them}.
 
 ## Official integrations
 
@@ -33,26 +33,26 @@ There are two official integrations so far:
 
 Refer to their documentation to learn how to use them.
 
-We plan to provide more integrations with time. The next in the queue is [Vue.js](https://vuejs.org/) and we would like to [hear your ideas](https://github.com/ckeditor/ckeditor5/issues/1002) what should we work on next.
+We plan to provide more integrations with time. The next in the queue is [Vue.js](https://vuejs.org/) and we would like to [hear your ideas](https://github.com/ckeditor/ckeditor5/issues/1002) what we should work on next.
 
 ## Compatibility with Electron
 
-Starting from version 11.0.0 CKEditor 5 is compatible with Electron. Using CKEditor 5 in Electron applications do not require any additional steps.
+Starting from version 11.0.0 CKEditor 5 is compatible with Electron. Using CKEditor 5 in Electron applications does not require any additional steps.
 
 Check out a [sweet screencast of CKEditor 5 with real-time collaboration in Electron](https://twitter.com/ckeditor/status/1016627687568363520).
 
 ## Compatibility with Bootstrap
 
-In order to display CKEditor 5 inside [Bootstrap](https://getbootstrap.com/) modals you need to configure two things:
+In order to display CKEditor 5 inside [Bootstrap](https://getbootstrap.com/) modals you need to proceed as follows:
 
-* The `z-index` of CKEditor 5's floating balloons so they are displayed above the Bootstrap's overlay.
+* Configure the `z-index` of CKEditor 5 floating balloons so they are displayed above the Bootstrap overlay.
 * Configure Bootstrap to not steal focus from CKEditor 5 fields.
 
 The above can be ensured by adding this CSS:
 
 ```css
 /*
-	We need to add this CSS custom property to the body instead of :root,
+	You need to add this custom CSS property to the body instead of :root
 	because of CSS specificity.
 */
 body {
@@ -62,7 +62,7 @@ body {
 
 /*
 	Override Bootstrap's CSS.
-	Note: this won't be necessary once the following issue is fixed and released:
+	Note: This will not be necessary once the following issue is fixed and released:
 	https://github.com/ckeditor/ckeditor5-theme-lark/issues/189
 */
 .ck.ck-button {