diff options
author | Christopher Smith <chris@jalakai.co.uk> | 2014-03-06 20:03:30 +0000 |
---|---|---|
committer | Christopher Smith <chris@jalakai.co.uk> | 2014-03-06 20:03:30 +0000 |
commit | a96178004fc8b519df17f6cb907e1c067b964bb2 (patch) | |
tree | 94824c80de2a6a4c95ed6d8a141b33c9506809aa /lib/plugins/syntax.php | |
parent | c01cdb709fd0bf8c91333c5134743e33bf587833 (diff) | |
download | dokuwiki-a96178004fc8b519df17f6cb907e1c067b964bb2.tar.gz dokuwiki-a96178004fc8b519df17f6cb907e1c067b964bb2.zip |
remove reference to reference from comments
Diffstat (limited to 'lib/plugins/syntax.php')
-rw-r--r-- | lib/plugins/syntax.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/plugins/syntax.php b/lib/plugins/syntax.php index ec90993cf..42a4903ec 100644 --- a/lib/plugins/syntax.php +++ b/lib/plugins/syntax.php @@ -63,7 +63,7 @@ class DokuWiki_Syntax_Plugin extends Doku_Parser_Mode_Plugin { * @param string $match The text matched by the patterns * @param int $state The lexer state for the match * @param int $pos The character position of the matched text - * @param Doku_Handler $handler Reference to the Doku_Handler object + * @param Doku_Handler $handler The Doku_Handler object * @return array Return an array with all data you want to use in render */ function handle($match, $state, $pos, Doku_Handler $handler){ @@ -89,7 +89,7 @@ class DokuWiki_Syntax_Plugin extends Doku_Parser_Mode_Plugin { * created * * @param $format string output format being rendered - * @param $renderer Doku_Renderer reference to the current renderer object + * @param $renderer Doku_Renderer the current renderer object * @param $data array data created by handler() * @return boolean rendered correctly? */ |