Forráskód Böngészése

Docs: Fixed API docs issue in `Locale`.

Maciej Bukowski 5 éve
szülő
commit
c7fd35183d
1 módosított fájl, 1 hozzáadás és 1 törlés
  1. 1 1
      packages/ckeditor5-utils/src/locale.js

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

@@ -94,7 +94,7 @@ export default class Locale {
 		 * 		t( 'Created file "%0", fileName );
 		 *
          * The message supports plural forms. To specify the plural form, use the `plural` property. Singular or plural form
-		 * will be chosen depending on the first value from the passed `values`. The value of this property is used
+		 * will be chosen depending on the first value from the passed `values`. The value of the `plural` property is used
 		 * as a default plural translation when the translation for the target language is missing. Therefore, it should be a number.
 		 *
 		 *		t( { string: 'Add a space', plural: 'Add %0 spaces' }, 1 ); // 'Add a space' for the English language.