typos in comments

This commit is contained in:
Marc Delisle
2009-06-27 11:48:32 +00:00
parent 4f072ddfbf
commit 5826ccb254

View File

@@ -31,7 +31,7 @@
* // create a localized success message * // create a localized success message
* $message = PMA_Message::success('strSomeLocaleMessage'); * $message = PMA_Message::success('strSomeLocaleMessage');
* *
* // create another message, a hint, whith a localized string which expects * // create another message, a hint, with a localized string which expects
* // two parameters: $strSomeFootnote = 'Read the %smanual%s' * // two parameters: $strSomeFootnote = 'Read the %smanual%s'
* $hint = PMA_Message::notice('strSomeFootnote'); * $hint = PMA_Message::notice('strSomeFootnote');
* // replace %d with the following params * // replace %d with the following params
@@ -49,7 +49,7 @@
* $more->addParam('parameter for strSomeMoreLocale'); * $more->addParam('parameter for strSomeMoreLocale');
* $more->addParam('more parameter for strSomeMoreLocale'); * $more->addParam('more parameter for strSomeMoreLocale');
* *
* // and add it also to the orignal message * // and add it also to the original message
* $message->addMessage($more); * $message->addMessage($more);
* // finally add another raw message * // finally add another raw message
* $message->addMessage('some final words', ' - '); * $message->addMessage('some final words', ' - ');
@@ -102,7 +102,7 @@ class PMA_Message
protected $_string = ''; protected $_string = '';
/** /**
* The formated message * The formatted message
* *
* @access protected * @access protected
* @var string * @var string
@@ -351,7 +351,7 @@ class PMA_Message
/** /**
* returns whether this message is a notice message or not * returns whether this message is a notice message or not
* and optionaly makes this message a notice message * and optionally makes this message a notice message
* *
* @uses PMA_Message::NOTICE * @uses PMA_Message::NOTICE
* @uses PMA_Message::setNumber() * @uses PMA_Message::setNumber()
@@ -370,7 +370,7 @@ class PMA_Message
/** /**
* returns whether this message is a warning message or not * returns whether this message is a warning message or not
* and optionaly makes this message a warning message * and optionally makes this message a warning message
* *
* @uses PMA_Message::WARNING * @uses PMA_Message::WARNING
* @uses PMA_Message::setNumber() * @uses PMA_Message::setNumber()
@@ -389,7 +389,7 @@ class PMA_Message
/** /**
* returns whether this message is an error message or not * returns whether this message is an error message or not
* and optionaly makes this message an error message * and optionally makes this message an error message
* *
* @uses PMA_Message::ERROR * @uses PMA_Message::ERROR
* @uses PMA_Message::setNumber() * @uses PMA_Message::setNumber()
@@ -455,7 +455,7 @@ class PMA_Message
* usage * usage
* <code> * <code>
* $message->addParam('strLocale', false); * $message->addParam('strLocale', false);
* $message->addParam('[em]somes tring[/em]'); * $message->addParam('[em]some string[/em]');
* $message->addParam('<img src="img" />', false); * $message->addParam('<img src="img" />', false);
* </code> * </code>
* *
@@ -661,7 +661,7 @@ class PMA_Message
* @uses is_array() * @uses is_array()
* @uses array_unshift() * @uses array_unshift()
* @uses call_user_func_array() * @uses call_user_func_array()
* @return string formated * @return string formatted
*/ */
static public function format() static public function format()
{ {