Parcourir la source

Docs: Minor fixes. [skip ci]

Aleksander Nowodzinski il y a 6 ans
Parent
commit
b34ea3f61f

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

@@ -16,7 +16,7 @@ See the {@link module:upload/filerepository~FileRepository} plugin documentation
 
 This repository contains the following upload adapters:
 
-* {@link module:upload/base64uploadadapter~Base64UploadAdapter `Base64UploadAdapter`} - plugin that converts images inserted into the editor into [Base64 strings](https://en.wikipedia.org/wiki/Base64) stored directly in the {@glink builds/guides/integration/saving-data editor output}.
+* {@link module:upload/base64uploadadapter~Base64UploadAdapter `Base64UploadAdapter`} - plugin that converts images inserted into the editor into [Base64 strings](https://en.wikipedia.org/wiki/Base64) in the {@glink builds/guides/integration/saving-data editor output}.
 
 ## Installation
 

+ 1 - 1
packages/ckeditor5-upload/docs/features/base64-upload-adapter.md

@@ -6,7 +6,7 @@ order: 40
 
 # Base64 upload adapter
 
-The {@link module:upload/base64uploadadapter~Base64UploadAdapter Base64 image upload adapter} plugin converts images inserted into the editor into [Base64 strings](https://en.wikipedia.org/wiki/Base64) stored directly in the {@link builds/guides/integration/saving-data editor output}.
+The {@link module:upload/base64uploadadapter~Base64UploadAdapter Base64 image upload adapter} plugin converts images inserted into the editor into [Base64 strings](https://en.wikipedia.org/wiki/Base64) in the {@link builds/guides/integration/saving-data editor output}.
 
 This kind of image upload does not require server processing – images are stored with the rest of the text and displayed by the web browser without additional requests. On the downside, this approach can bloat your database with very long data strings which, in theory, could have a negative impact on the performance.
 

+ 1 - 1
packages/ckeditor5-upload/src/base64uploadadapter.js

@@ -14,7 +14,7 @@ import FileRepository from './filerepository';
 
 /**
  * A plugin that converts images inserted into the editor into [Base64 strings](https://en.wikipedia.org/wiki/Base64)
- * stored directly in the {@glink builds/guides/integration/saving-data editor output}.
+ * in the {@glink builds/guides/integration/saving-data editor output}.
  *
  * This kind of image upload does not require server processing – images are stored with the rest of the text and
  * displayed by the web browser without additional requests.