8
0
Piotrek Koszuliński 9 лет назад
Родитель
Сommit
82796bf385

+ 1 - 1
packages/ckeditor5-core/src/command/command.js

@@ -78,7 +78,7 @@ export default class Command {
 	 * Executes the command if it is enabled.
 	 *
 	 * @protected
-	 * @param {*} param Parameter passed to {@link #execute execute} method of this command.
+	 * @param {*} param Parameter passed to {@link module:core/editor/editor~Editor#execute execute} method of this command.
 	 */
 	_execute( param ) {
 		if ( this.isEnabled ) {

+ 5 - 5
packages/ckeditor5-core/src/editor/editor.js

@@ -20,7 +20,7 @@ import mix from '../../utils/mix.js';
 /**
  * Class representing a basic editor. It contains a base architecture, without much additional logic.
  *
- * See also {@link module:core/editor/editor~StandardEditor}.
+ * See also {@link module:core/editor/standardeditor~StandardEditor}.
  *
  * @mixes module:utils/emittermixin~EmitterMixin
  */
@@ -81,14 +81,14 @@ export default class Editor {
 		 * Instance of the {@link module:engine/controller/datacontroller~DataController data controller}.
 		 *
 		 * @readonly
-		 * @member {module:engine/controller.DataController}
+		 * @member {module:engine/controller/datacontroller~DataController}
 		 */
 		this.data = new DataController( this.document );
 
 		/**
 		 * Instance of the {@link module:engine/controller/editingcontroller~EditingController editing controller}.
 		 *
-		 * This property is set by more specialized editor classes (such as {@link module:core/editor/editor~StandardEditor}),
+		 * This property is set by more specialized editor classes (such as {@link module:core/editor/standardeditor~StandardEditor}),
 		 * however, it's required for features to work as their engine-related parts will try to connect converters.
 		 *
 		 * When defining a virtual editor class, like one working in Node.js, it's possible to plug a virtual
@@ -163,9 +163,9 @@ export default class Editor {
 	/**
 	 * Creates a basic editor instance.
 	 *
-	 * @param {Object} config See {@link module:core/editor/editor~StandardEditor}'s param.
+	 * @param {Object} config See {@link module:core/editor/standardeditor~StandardEditor}'s param.
 	 * @returns {Promise} Promise resolved once editor is ready.
-	 * @returns {module:core/editor/editor~StandardEditor} return.editor The editor instance.
+	 * @returns {module:core/editor/standardeditor~StandardEditor} return.editor The editor instance.
 	 */
 	static create( config ) {
 		return new Promise( ( resolve ) => {

+ 1 - 1
packages/ckeditor5-core/src/keystrokehandler.js

@@ -11,7 +11,7 @@ import EmitterMixin from '../utils/emittermixin.js';
 import { getCode, parseKeystroke } from '../utils/keyboard.js';
 
 /**
- * Keystroke handler. Its instance is available in {@link module:core/editor/editor~Editor#keystrokes} so plugins
+ * Keystroke handler. Its instance is available in {@link module:core/editor/standardeditor~StandardEditor#keystrokes} so plugins
  * can register their keystrokes.
  *
  * E.g. an undo plugin would do this:

+ 1 - 1
packages/ckeditor5-core/src/plugincollection.js

@@ -48,7 +48,7 @@ export default class PluginCollection {
 	/**
 	 * Gets the plugin instance by its constructor or name.
 	 *
-	 * @param {Function|String} key The plugin constructor or {@link module:core/plugin~Plugin.plugiName name}.
+	 * @param {Function|String} key The plugin constructor or {@link module:core/plugin~Plugin.pluginName name}.
 	 * @returns {module:core/plugin~Plugin}
 	 */
 	get( key ) {