fixed some doxygen warnings
authorAlexandre Emsenhuber <ialex@users.mediawiki.org>
Wed, 12 May 2010 21:26:34 +0000 (21:26 +0000)
committerAlexandre Emsenhuber <ialex@users.mediawiki.org>
Wed, 12 May 2010 21:26:34 +0000 (21:26 +0000)
includes/diff/DifferenceInterface.php

index 712a22e..fccecd3 100644 (file)
@@ -564,9 +564,9 @@ CONTROL;
        /**
         * Get complete diff table, including header
         *
-        * @param Title $otitle Old title
-        * @param Title $ntitle New title
-        * @param string $notice HTML between diff header and body
+        * @param $otitle Title: old title
+        * @param $ntitle Title: new title
+        * @param $notice String: HTML between diff header and body
         * @return mixed
         */
        function getDiff( $otitle, $ntitle, $notice = '' ) {
@@ -665,7 +665,9 @@ CONTROL;
 
        /**
         * Generate a diff, no caching
-        * $otext and $ntext must be already segmented
+        *
+        * @param $otext String: old text, must be already segmented
+        * @param $ntext String: new text, must be already segmented
         */
        function generateDiffBody( $otext, $ntext ) {
                global $wgExternalDiffEngine, $wgContLang;