8
0
Maciej Gołaszewski 6 лет назад
Родитель
Сommit
52d06769d6
1 измененных файлов с 2 добавлено и 2 удалено
  1. 2 2
      packages/ckeditor5-mention/src/mention.js

+ 2 - 2
packages/ckeditor5-mention/src/mention.js

@@ -55,12 +55,12 @@ export default class Mention extends Plugin {
  *		}
  *
  * @typedef {Object} module:mention/mention~MentionFeed
- * @property {String} [marker='@'] The character which triggers autocompletion for mention.
+ * @property {String} [marker='@'] The character which triggers auto-completion for mention.
  * @property {Array.<module:mention/mention~MentionFeedItem>|Function} feed The auto complete feed items. Provide an array for
  * static configuration or a function that returns a promise for asynchronous feeds.
  * @property {Number} [minimumCharacters=0] Specifies after how many characters show the autocomplete panel.
  * @property {Function} [itemRenderer] Function that renders {@link module:mention/mention~MentionFeedItem}
- * to the autocomplete list to a DOM elemnt.
+ * to the autocomplete list to a DOM element.
  */
 
 /**