Index: trunk/phase3/includes/diff/DifferenceInterface.php |
— | — | @@ -564,9 +564,9 @@ |
565 | 565 | /** |
566 | 566 | * Get complete diff table, including header |
567 | 567 | * |
568 | | - * @param Title $otitle Old title |
569 | | - * @param Title $ntitle New title |
570 | | - * @param string $notice HTML between diff header and body |
| 568 | + * @param $otitle Title: old title |
| 569 | + * @param $ntitle Title: new title |
| 570 | + * @param $notice String: HTML between diff header and body |
571 | 571 | * @return mixed |
572 | 572 | */ |
573 | 573 | function getDiff( $otitle, $ntitle, $notice = '' ) { |
— | — | @@ -665,7 +665,9 @@ |
666 | 666 | |
667 | 667 | /** |
668 | 668 | * Generate a diff, no caching |
669 | | - * $otext and $ntext must be already segmented |
| 669 | + * |
| 670 | + * @param $otext String: old text, must be already segmented |
| 671 | + * @param $ntext String: new text, must be already segmented |
670 | 672 | */ |
671 | 673 | function generateDiffBody( $otext, $ntext ) { |
672 | 674 | global $wgExternalDiffEngine, $wgContLang; |