diff --git a/core/lib/Drupal/Core/StringTranslation/StringTranslationTrait.php b/core/lib/Drupal/Core/StringTranslation/StringTranslationTrait.php index aae4d4535ae631daa925c1d82e7e837ec8aa011a..e67bf2bc9783a82d157d3591d370062d8bbebd38 100644 --- a/core/lib/Drupal/Core/StringTranslation/StringTranslationTrait.php +++ b/core/lib/Drupal/Core/StringTranslation/StringTranslationTrait.php @@ -77,8 +77,7 @@ protected function t($string, array $args = array(), array $options = array()) { /** * Formats a string containing a count of items. * - * See the \Drupal\Core\StringTranslation\TranslationInterface::formatPlural() - * documentation for details. + * @see \Drupal\Core\StringTranslation\TranslationInterface::formatPlural() */ protected function formatPlural($count, $singular, $plural, array $args = array(), array $options = array()) { return $this->getStringTranslation()->formatPlural($count, $singular, $plural, $args, $options); @@ -87,9 +86,6 @@ protected function formatPlural($count, $singular, $plural, array $args = array( /** * Returns the number of plurals supported by a given language. * - * See the \Drupal\locale\PluralFormulaInterface::getNumberOfPlurals() - * documentation for details. - * * @see \Drupal\locale\PluralFormulaInterface::getNumberOfPlurals() */ protected function getNumberOfPlurals($langcode = NULL) {