Minor part of bug 23473 - For the top level ApiMain/ApiQuery modules, note that modul...
authorSam Reed <reedy@users.mediawiki.org>
Sat, 15 May 2010 11:07:31 +0000 (11:07 +0000)
committerSam Reed <reedy@users.mediawiki.org>
Sat, 15 May 2010 11:07:31 +0000 (11:07 +0000)
Minor comment tweak to ApiQueryIWLinks

includes/api/ApiMain.php
includes/api/ApiQuery.php
includes/api/ApiQueryIWLinks.php

index 89469c7..43f4fc0 100644 (file)
@@ -607,7 +607,7 @@ class ApiMain extends ApiBase {
        public function getParamDescription() {
                return array(
                        'format' => 'The format of the output',
-                       'action' => 'What action you would like to perform',
+                       'action' => 'What action you would like to perform. See below for module help',
                        'version' => 'When showing help, include version for each module',
                        'maxlag' => 'Maximum lag',
                        'smaxage' => 'Set the s-maxage header to this many seconds. Errors are never cached',
index af7f830..7274890 100644 (file)
@@ -568,9 +568,9 @@ class ApiQuery extends ApiBase {
 
        public function getParamDescription() {
                return array(
-                       'prop' => 'Which properties to get for the titles/revisions/pageids',
-                       'list' => 'Which lists to get',
-                       'meta' => 'Which metadata to get about the site',
+                       'prop' => 'Which properties to get for the titles/revisions/pageids. Module help is available below',
+                       'list' => 'Which lists to get. Module help is available below',
+                       'meta' => 'Which metadata to get about the site. Module help is available below',
                        'generator' => array( 'Use the output of a list as the input for other prop/list/meta items',
                                        'NOTE: generator parameter names must be prefixed with a \'g\', see examples' ),
                        'redirects' => 'Automatically resolve redirects',
index 8f90ebe..5136405 100644 (file)
@@ -30,7 +30,7 @@ if ( !defined( 'MEDIAWIKI' ) ) {
 }
 
 /**
- * A query module to list all interwiki links
+ * A query module to list all interwiki links on a page
  *
  * @ingroup API
  */