8
0
Quellcode durchsuchen

Docs: Improved links between API and guides. See ckeditor/ckeditor5#1090.

Piotrek Koszuliński vor 7 Jahren
Ursprung
Commit
776cc4f5f9
1 geänderte Dateien mit 3 neuen und 1 gelöschten Zeilen
  1. 3 1
      packages/ckeditor5-autosave/src/autosave.js

+ 3 - 1
packages/ckeditor5-autosave/src/autosave.js

@@ -17,7 +17,7 @@ import { debounce } from 'lodash-es';
 /* globals window */
 
 /**
- * The {@link module:autosave/autosave~Autosave} allows you to automatically save the data (e.g. send it to the server)
+ * The {@link module:autosave/autosave~Autosave} plugin allows you to automatically save the data (e.g. send it to the server)
  * when needed (when the user changed the content).
  *
  * It listens to the {@link module:engine/model/document~Document#event:change:data `editor.model.document#change:data`}
@@ -42,6 +42,8 @@ import { debounce } from 'lodash-es';
  *
  * Read more about this feature in the {@glink builds/guides/integration/saving-data#the-autosave-feature Autosave feature}
  * section of the {@glink builds/guides/integration/saving-data Saving and getting data}.
+ *
+ * @extends module:core/plugin~Plugin
  */
 export default class Autosave extends Plugin {
 	/**