Per Platonides, follow-up to r67834: fix doc and removed no more needed return-by...
authorAlexandre Emsenhuber <ialex@users.mediawiki.org>
Sat, 16 Oct 2010 18:58:29 +0000 (18:58 +0000)
committerAlexandre Emsenhuber <ialex@users.mediawiki.org>
Sat, 16 Oct 2010 18:58:29 +0000 (18:58 +0000)
includes/parser/Parser.php

index fe6dbfb..b6d755f 100644 (file)
@@ -538,7 +538,7 @@ class Parser {
         *
         * @return Title object
         */
-       function &getTitle() {
+       function getTitle() {
                return $this->mTitle;
        }
 
@@ -647,7 +647,7 @@ class Parser {
         *
         * @param $elements list of element names. Comments are always extracted.
         * @param $text Source text string.
-        * @param $matches Out parameter, Array: extarcted tags
+        * @param $matches Out parameter, Array: extracted tags
         * @param $uniq_prefix
         * @return String: stripped text
         *
@@ -4034,7 +4034,7 @@ class Parser {
         * conversion, substitting signatures, {{subst:}} templates, etc.
         *
         * @param $text String: the text to transform
-        * @param &$title Title: the Title object for the current article
+        * @param $title Title: the Title object for the current article
         * @param $user User: the User object describing the current user
         * @param $options ParserOptions: parsing options
         * @param $clearState Boolean: whether to clear the parser state first