Browse Source

Docs: Improvements and bug fixes.

Aleksander Nowodzinski 5 years ago
parent
commit
04baa428db

+ 3 - 3
packages/ckeditor5-select-all/src/selectall.js

@@ -4,7 +4,7 @@
  */
 
 /**
- * @module selectall/selectall
+ * @module select-all/selectall
  */
 
 import Plugin from '@ckeditor/ckeditor5-core/src/plugin';
@@ -14,8 +14,8 @@ import SelectAllUI from './selectallui';
 /**
  * The select all feature.
  *
- * This is a "glue" plugin which loads the {@link module:selectall/selectallediting~SelectAllEditing select all editing feature}
- * and the {@link module:selectall/selectallui~SelectAllUI select all UI feature}.
+ * This is a "glue" plugin which loads the {@link module:select-all/selectallediting~SelectAllEditing select all editing feature}
+ * and the {@link module:select-all/selectallui~SelectAllUI select all UI feature}.
  *
  * Please refer to the documentation of individual features to learn more.
  *

+ 3 - 3
packages/ckeditor5-select-all/src/selectallcommand.js

@@ -4,7 +4,7 @@
  */
 
 /**
- * @module selectall/selectallcommand
+ * @module select-all/selectallcommand
  */
 
 import Command from '@ckeditor/ckeditor5-core/src/command';
@@ -12,14 +12,14 @@ import Command from '@ckeditor/ckeditor5-core/src/command';
 /**
  * The select all command.
  *
- * It is used by the {@link module:selectall/selectallediting~SelectAllEditing select all editing feature} to handle
+ * It is used by the {@link module:select-all/selectallediting~SelectAllEditing select all editing feature} to handle
  * the <kbd>Ctrl</kbd>+<kbd>A</kbd> keystroke.
  *
  * Executing this command changes the {@glink framework/guides/architecture/editing-engine#model model}
  * selection so it contains the entire content of the editable root of the editor the selection is
  * {@link module:engine/model/selection~Selection#anchor anchored} in.
  *
- * If the selection was anchored in a {@link framework/guides/tutorials/implementing-a-block-widget nested editable}
+ * If the selection was anchored in a {@glink framework/guides/tutorials/implementing-a-block-widget nested editable}
  * (e.g. a caption of an image), the new selection will contain its entire content.
  *
  * @extends module:core/command~Command

+ 2 - 2
packages/ckeditor5-select-all/src/selectallediting.js

@@ -4,7 +4,7 @@
  */
 
 /**
- * @module selectall/selectallediting
+ * @module select-all/selectallediting
  */
 
 import Plugin from '@ckeditor/ckeditor5-core/src/plugin';
@@ -16,7 +16,7 @@ const SELECT_ALL_KEYSTROKE = parseKeystroke( 'Ctrl+A' );
 /**
  * The select all editing feature.
  *
- * It registers the `'selectAll'` {@link module:selectall/selectallcommand~SelectAllCommand command}
+ * It registers the `'selectAll'` {@link module:select-all/selectallcommand~SelectAllCommand command}
  * and the <kbd>Ctrl</kbd>+<kbd>A</kbd> keystroke listener which executes it.
  *
  * @extends module:core/plugin~Plugin

+ 2 - 2
packages/ckeditor5-select-all/src/selectallui.js

@@ -4,7 +4,7 @@
  */
 
 /**
- * @module selectall/selectallediting
+ * @module select-all/selectallui
  */
 
 import Plugin from '@ckeditor/ckeditor5-core/src/plugin';
@@ -17,7 +17,7 @@ import selectAllIcon from '../theme/icons/select-all.svg';
  *
  * It registers the `'selectAll'` UI button in the editor's
  * {@link module:ui/componentfactory~ComponentFactory component factory}. When clicked, the button
- * executes the {@link module:selectall/selectallcommand~SelectAllCommand select all command}.
+ * executes the {@link module:select-all/selectallcommand~SelectAllCommand select all command}.
  *
  * @extends module:core/plugin~Plugin
  */