diff options
author | Kevin Chabowski <kevin@kch42.de> | 2013-02-03 12:07:37 +0100 |
---|---|---|
committer | Kevin Chabowski <kevin@kch42.de> | 2013-02-03 12:07:37 +0100 |
commit | 91b965181f907b169aeeff63a6c15f9b8df9d9a9 (patch) | |
tree | 2e6c99869e4f7a0303e1d1d8a8e16225cc13c64c /stupid_template_engine.php | |
parent | e78747b85b8a5cb55d31691b980824993286b188 (diff) | |
download | ste-91b965181f907b169aeeff63a6c15f9b8df9d9a9.tar.gz ste-91b965181f907b169aeeff63a6c15f9b8df9d9a9.tar.bz2 ste-91b965181f907b169aeeff63a6c15f9b8df9d9a9.zip |
Some minor documentation fixes
Grammar and spelling...
Diffstat (limited to 'stupid_template_engine.php')
-rw-r--r-- | stupid_template_engine.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/stupid_template_engine.php b/stupid_template_engine.php index aadbb86..7153a99 100644 --- a/stupid_template_engine.php +++ b/stupid_template_engine.php @@ -1078,7 +1078,7 @@ class STECore * * Parameters: * $name - The name of the tag. - * $callback - A callable function (This must tage three parameters: The <STECore> instance, an associative array of parameters, and a function representing the tags content(This expects the <STECore> instance as its only parameter and returns its text result, i.e to get the text, you neeed to call this function with the <STECore> instance as a parameter)). + * $callback - A callable function (This must take three parameters: The <STECore> instance, an associative array of parameters, and a function representing the tags content(This expects the <STECore> instance as its only parameter and returns its text result, i.e to get the text, you neeed to call this function with the <STECore> instance as a parameter)). * * Throws: * An Exception if the tag could not be registered (if $callback is not callable or if $name is empty) |