Fix typos in comments. Props SergeyBiryukov, see #22337

git-svn-id: http://core.svn.wordpress.org/trunk@22355 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
Nikolay Bachiyski 2012-10-31 23:56:23 +00:00
parent f4976f40b3
commit 0672d11502
1 changed files with 2 additions and 2 deletions

View File

@ -81,7 +81,7 @@ class Translations {
/** /**
* Given the number of items, returns the 0-based index of the plural form to use * Given the number of items, returns the 0-based index of the plural form to use
* *
* Here, in the base Translations class, the common logic for English is implmented: * Here, in the base Translations class, the common logic for English is implemented:
* 0 if there is one element, 1 otherwise * 0 if there is one element, 1 otherwise
* *
* This function should be overrided by the sub-classes. For example MO/PO can derive the logic * This function should be overrided by the sub-classes. For example MO/PO can derive the logic
@ -134,7 +134,7 @@ class Translations {
class Gettext_Translations extends Translations { class Gettext_Translations extends Translations {
/** /**
* The gettext implmentation of select_plural_form. * The gettext implementation of select_plural_form.
* *
* It lives in this class, because there are more than one descendand, which will use it and * It lives in this class, because there are more than one descendand, which will use it and
* they can't share it effectively. * they can't share it effectively.