summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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) {