From e9fbc524740a2124d3311b57c209508955b6bd5d Mon Sep 17 00:00:00 2001 From: Nikolay Bachiyski Date: Wed, 31 Oct 2012 23:56:23 +0000 Subject: [PATCH] Fix typos in comments. Props SergeyBiryukov, see #22337 git-svn-id: https://develop.svn.wordpress.org/trunk@22355 602fd350-edb4-49c9-b593-d223f7449a82 --- wp-includes/pomo/translations.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/wp-includes/pomo/translations.php b/wp-includes/pomo/translations.php index 415b4c819b..856e38aa10 100644 --- a/wp-includes/pomo/translations.php +++ b/wp-includes/pomo/translations.php @@ -81,7 +81,7 @@ class Translations { /** * 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 * * 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 { /** - * 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 * they can't share it effectively.