Fixed some doxygen warnings
authorAlexandre Emsenhuber <ialex@users.mediawiki.org>
Wed, 10 Feb 2010 21:42:31 +0000 (21:42 +0000)
committerAlexandre Emsenhuber <ialex@users.mediawiki.org>
Wed, 10 Feb 2010 21:42:31 +0000 (21:42 +0000)
maintenance/language/diffLanguage.php
maintenance/language/rebuildLanguage.php

index 9d395b3..bbdb865 100644 (file)
@@ -69,7 +69,7 @@ function ucfirstlcrest($string) {
 
 /**
  * Return a $wgAllmessages array shipped in MediaWiki
- * @param string $languageCode Formated language code
+ * @param $languageCode String: formated language code
  * @return array The MediaWiki default $wgAllMessages array requested
  */
 function getMediawikiMessages($languageCode = 'En') {
@@ -93,8 +93,8 @@ function getMediawikiMessages($languageCode = 'En') {
 /**
  * Return a $wgAllmessages array in a given file. Language of the array
  * need to be given cause we can not detect which language it provides
- * @param string $filename Filename of the file containing a message array
- * @param string $languageCode Language of the external array
+ * @param $filename String: filename of the file containing a message array
+ * @param $languageCode String: language of the external array
  * @return array A $wgAllMessages array from an external file.
  */
 function getExternalMessages($filename, $languageCode) {
index dd3bbd1..6c624ca 100644 (file)
@@ -17,7 +17,7 @@ require_once( 'writeMessagesArray.inc' );
  * @param $code The language code.
  * @param $write Write to the messages file?
  * @param $listUnknown List the unknown messages?
- * @param $removeUnKnown Remove the unknown messages?
+ * @param $removeUnknown Remove the unknown messages?
  * @param $removeDupes Remove the duplicated messages?
  * @param $dupeMsgSource The source file intended to remove from the array.
  */