8
0
Pārlūkot izejas kodu

Docs: Fixes in README and automatic text transformations guide. [skip ci]

Anna Tomanek 6 gadi atpakaļ
vecāks
revīzija
ddb968b239

+ 1 - 1
packages/ckeditor5-typing/README.md

@@ -9,7 +9,7 @@ CKEditor 5 typing feature
 [![Dependency Status](https://david-dm.org/ckeditor/ckeditor5-typing/status.svg)](https://david-dm.org/ckeditor/ckeditor5-typing)
 [![devDependency Status](https://david-dm.org/ckeditor/ckeditor5-typing/dev-status.svg)](https://david-dm.org/ckeditor/ckeditor5-typing?type=dev)
 
-This package implements support for typing (inputting and deleting text) in CKEditor 5.
+This package implements support for typing (inputting and deleting text) in CKEditor 5. It also includes the automatic text transformations (autocorrect) feature that lets you automatically turn predefined snippets into their improved forms.
 
 ## Documentation
 

+ 1 - 1
packages/ckeditor5-typing/docs/api/typing.md

@@ -6,7 +6,7 @@ category: api-reference
 
 [![npm version](https://badge.fury.io/js/%40ckeditor%2Fckeditor5-typing.svg)](https://www.npmjs.com/package/@ckeditor/ckeditor5-typing)
 
-This package implements support for typing (inputting and deleting text) in CKEditor 5.
+This package implements support for typing (inputting and deleting text) in CKEditor 5. It also includes the automatic text transformations (autocorrect) feature that lets you automatically turn predefined snippets into their improved forms.
 
 ## Documentation
 

+ 5 - 4
packages/ckeditor5-typing/docs/features/text-transformation.md

@@ -1,12 +1,13 @@
 ---
 category: features
+menu-title: Automatic text transformation
 ---
 
-# Automatic text transformation
+# Automatic text transformation (autocorrect)
 
 {@snippet features/build-text-transformation-source}
 
-The {@link module:typing/texttransformation~TextTransformation} feature brings support for automatically turning predefined snippets into their improved forms. Here are some examples that will be transformed in your WYSIWYG editor:
+The {@link module:typing/texttransformation~TextTransformation} feature brings support for implementing autocorrection options, i.e. automatically turning predefined snippets into their improved forms. Here are some examples that will be transformed in your WYSIWYG editor:
 
 <table style="width: unset">
 	<thead>
@@ -39,9 +40,9 @@ The {@link module:typing/texttransformation~TextTransformation} feature brings s
 	</tbody>
 </table>
 
-This feature comes pre-configured with a set of the most popular transformations. You can, however, disable existing ones or add your own.
+This feature comes pre-configured with a set of the most popular transformations. You can, however, disable existing ones or add your own autocorrect entries.
 
-While most often this feature is used to easily insert characters that are not present on your keyboard, it can also be used to achieve other goals. For instance, you can improve the users' productivity by configuring it to expand some abbreviations (e.g. team or company names) into their full forms.
+While most often this feature is used to easily insert special characters that are not present on your keyboard, it can also be used to achieve other goals. For instance, you can improve the users' productivity by configuring it to expand some abbreviations (e.g. team or company names) into their full forms.
 
 ## Demo