|
|
@@ -11,7 +11,7 @@ import Command from '@ckeditor/ckeditor5-core/src/command';
|
|
|
import TreeWalker from '@ckeditor/ckeditor5-engine/src/model/treewalker';
|
|
|
|
|
|
/**
|
|
|
- * The list style command. It is used by the {@link module:list/liststyle~ListStyle list styles feature}.
|
|
|
+ * The list style command. It is used by the {@link module:list/liststyle~ListStyle list style feature}.
|
|
|
*
|
|
|
* @extends module:core/command~Command
|
|
|
*/
|
|
|
@@ -47,7 +47,7 @@ export default class ListStyleCommand extends Command {
|
|
|
* Executes the command.
|
|
|
*
|
|
|
* @param {Object} options
|
|
|
- * @param {String|null} options.type The type of the list styles, e.g. 'disc' or 'square'. If `null` specified, the default
|
|
|
+ * @param {String|null} options.type The type of the list style, e.g. `'disc'` or `'square'`. If `null` is specified, the default
|
|
|
* style will be applied.
|
|
|
* @protected
|
|
|
*/
|
|
|
@@ -116,7 +116,7 @@ export default class ListStyleCommand extends Command {
|
|
|
}
|
|
|
}
|
|
|
|
|
|
-// Returns an array with all `listItem` elements that represents the same list.
|
|
|
+// Returns an array with all `listItem` elements that represent the same list.
|
|
|
//
|
|
|
// It means that values for `listIndent`, `listType`, and `listStyle` for all items
|
|
|
// are equal.
|