summaryrefslogtreecommitdiff
path: root/inc
diff options
context:
space:
mode:
authorMichael Hamann <michael@content-space.de>2012-07-25 18:25:04 +0200
committerMichael Hamann <michael@content-space.de>2012-07-25 18:25:04 +0200
commitb3d1090ed94469e7a1f38c0352a8a4184a6ac846 (patch)
tree58eed3f15fba2fe1fcab0e76b7337cba0fc6cf75 /inc
parent0686da461503e8b1161e3aaedbb8a42795e1f095 (diff)
downloadrpg-b3d1090ed94469e7a1f38c0352a8a4184a6ac846.tar.gz
rpg-b3d1090ed94469e7a1f38c0352a8a4184a6ac846.tar.bz2
Fix type declarations in some PHPDoc comments
Diffstat (limited to 'inc')
-rw-r--r--inc/html.php2
-rw-r--r--inc/indexer.php2
-rw-r--r--inc/plugin.php2
3 files changed, 3 insertions, 3 deletions
diff --git a/inc/html.php b/inc/html.php
index 83e1f3643..410b59e49 100644
--- a/inc/html.php
+++ b/inc/html.php
@@ -1810,7 +1810,7 @@ function html_form_output($data) {
* @param array $flashvars - parameters to be passed in the flashvar parameter
* @param array $atts - additional attributes for the <object> tag
* @param string $alt - alternative content (is NOT automatically escaped!)
- * @returns string - the XHTML markup
+ * @return string - the XHTML markup
*/
function html_flashobject($swf,$width,$height,$params=null,$flashvars=null,$atts=null,$alt=''){
global $lang;
diff --git a/inc/indexer.php b/inc/indexer.php
index 80d2651c2..d3a10f7ad 100644
--- a/inc/indexer.php
+++ b/inc/indexer.php
@@ -1131,7 +1131,7 @@ class Doku_Indexer {
/**
* Create an instance of the indexer.
*
- * @return object a Doku_Indexer
+ * @return Doku_Indexer a Doku_Indexer
* @author Tom N Harris <tnharris@whoopdedo.org>
*/
function idx_get_indexer() {
diff --git a/inc/plugin.php b/inc/plugin.php
index ec94433b6..d2fe3818d 100644
--- a/inc/plugin.php
+++ b/inc/plugin.php
@@ -66,7 +66,7 @@ class DokuWiki_Plugin {
* to try to minimise unnecessary loading of the strings when the plugin doesn't require them
* e.g. when info plugin is querying plugins for information about themselves.
*
- * @param $id id of the string to be retrieved
+ * @param string $id id of the string to be retrieved
* @return string string in appropriate language or english if not available
*/
function getLang($id) {