From a5db4b7f288d90a5273335553a9eca65c193bd0c Mon Sep 17 00:00:00 2001 From: Ori Livneh Date: Wed, 1 Jul 2015 18:48:34 -0700 Subject: [PATCH] Fix reference to nonexistent ApiBase::getModulePathString in inline docs Change-Id: Iad6420ea88c4cf94c234be7f01a2ed2854e02919 --- includes/api/ApiBase.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/includes/api/ApiBase.php b/includes/api/ApiBase.php index 4b76e65eee..393ff49d7c 100644 --- a/includes/api/ApiBase.php +++ b/includes/api/ApiBase.php @@ -2481,7 +2481,7 @@ abstract class ApiBase extends ContextSource { * Returns the description string for this module * * Ignored if an i18n message exists for - * "apihelp-{$this->getModulePathString()}-description". + * "apihelp-{$this->getModulePath()}-description". * * @deprecated since 1.25 * @return Message|string|array @@ -2495,7 +2495,7 @@ abstract class ApiBase extends ContextSource { * * For each parameter, ignored if an i18n message exists for the parameter. * By default that message is - * "apihelp-{$this->getModulePathString()}-param-{$param}", but it may be + * "apihelp-{$this->getModulePath()}-param-{$param}", but it may be * overridden using ApiBase::PARAM_HELP_MSG in the data returned by * self::getFinalParams(). * -- 2.20.1