8
0
Maciej Bukowski 5 лет назад
Родитель
Сommit
0d2a67f52a

+ 2 - 0
packages/ckeditor5-core/src/editor/editor.js

@@ -90,6 +90,8 @@ export default class Editor {
 		this.plugins = new PluginCollection( this, availablePlugins, this._context.plugins );
 
 		/**
+		 * The locale instance.
+		 *
 		 * @readonly
 		 * @type {module:utils/locale~Locale}
 		 */

+ 1 - 1
packages/ckeditor5-watchdog/src/watchdog.js

@@ -49,7 +49,7 @@ export default class Watchdog {
 		 * * `destroyed` – A state when the item is manually destroyed by the user after calling `watchdog.destroy()`.
 		 *
 		 * @public
-		 * @member {'initializing'|'ready'|'crashed'|'crashedPermanently'|'destroyed'} #state
+		 * @type {'initializing'|'ready'|'crashed'|'crashedPermanently'|'destroyed'}
 		 */
 		this.state = 'initializing';