From b6e00a655baecb456219739c42a1e8f7f5886a6a Mon Sep 17 00:00:00 2001 From: Alexandre Emsenhuber Date: Fri, 17 Apr 2009 16:58:52 +0000 Subject: [PATCH] Fix doxygen warnings --- includes/Xml.php | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/includes/Xml.php b/includes/Xml.php index bbe0717c80..47575cf6bd 100644 --- a/includes/Xml.php +++ b/includes/Xml.php @@ -692,9 +692,9 @@ class Xml { /** * Build a table of data - * @param array $rows An array of arrays of strings, each to be a row in a table - * @param array $attribs Attributes to apply to the table tag [optional] - * @param array $headers An array of strings to use as table headers [optional] + * @param $rows An array of arrays of strings, each to be a row in a table + * @param $attribs An array of attributes to apply to the table tag [optional] + * @param $headers An array of strings to use as table headers [optional] * @return string */ public static function buildTable( $rows, $attribs = array(), $headers = null ) { @@ -717,7 +717,7 @@ class Xml { /** * Build a row for a table - * @param array $cells An array of strings to put in + * @param $cells An array of strings to put in * @return string */ public static function buildTableRow( $attribs, $cells ) { -- 2.20.1