From: Alexandre Emsenhuber Date: Wed, 12 May 2010 21:26:34 +0000 (+0000) Subject: fixed some doxygen warnings X-Git-Tag: 1.31.0-rc.0~36868 X-Git-Url: https://git.cyclocoop.org/%7B%24www_url%7Dadmin/compta/banques/ajouter.php?a=commitdiff_plain;h=5f1b38182bf8d51750bff660c373832edb185228;p=lhc%2Fweb%2Fwiklou.git fixed some doxygen warnings --- diff --git a/includes/diff/DifferenceInterface.php b/includes/diff/DifferenceInterface.php index 712a22ed56..fccecd3713 100644 --- a/includes/diff/DifferenceInterface.php +++ b/includes/diff/DifferenceInterface.php @@ -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;