Piotrek Koszuliński пре 9 година
родитељ
комит
50e2d78f78
2 измењених фајлова са 3 додато и 3 уклоњено
  1. 1 1
      packages/ckeditor5-utils/src/focustracker.js
  2. 2 2
      packages/ckeditor5-utils/src/locale.js

+ 1 - 1
packages/ckeditor5-utils/src/focustracker.js

@@ -17,7 +17,7 @@ import mix from './mix.js';
 /**
 /**
  * Allows observing a group of `HTMLElement`s whether at least one of them is focused.
  * Allows observing a group of `HTMLElement`s whether at least one of them is focused.
  *
  *
- * Used by the {@link module:core/editor~Editor} in order to track whether the focus is still within the application,
+ * Used by the {@link module:core/editor/editor~Editor} in order to track whether the focus is still within the application,
  * or were used outside of its UI.
  * or were used outside of its UI.
  *
  *
  * **Note** `focus` and `blur` listeners use event capturing, so it is only needed to register wrapper `HTMLElement`
  * **Note** `focus` and `blur` listeners use event capturing, so it is only needed to register wrapper `HTMLElement`

+ 2 - 2
packages/ckeditor5-utils/src/locale.js

@@ -12,7 +12,7 @@
  */
  */
 export default class Locale {
 export default class Locale {
 	/**
 	/**
-	 * Creates a new instance of the Locale class. {@link ~Locale}
+	 * Creates a new instance of the Locale class.
 	 *
 	 *
 	 * @param {String} [lang='en'] The language code in [ISO 639-1](https://en.wikipedia.org/wiki/ISO_639-1) format.
 	 * @param {String} [lang='en'] The language code in [ISO 639-1](https://en.wikipedia.org/wiki/ISO_639-1) format.
 	 */
 	 */
@@ -26,7 +26,7 @@ export default class Locale {
 		this.lang = lang || 'en';
 		this.lang = lang || 'en';
 
 
 		/**
 		/**
-		 * Translates the given string to the {@link #lang}. This method is also availble in {@link module:core/editor~Editor#t} and
+		 * Translates the given string to the {@link #lang}. This method is also availble in {@link module:core/editor/editor~Editor#t} and
 		 * {@link module:ui/view~View#t}.
 		 * {@link module:ui/view~View#t}.
 		 *
 		 *
 		 * The strings may contain placeholders (`%<index>`) for values which are passed as the second argument.
 		 * The strings may contain placeholders (`%<index>`) for values which are passed as the second argument.