fix typos paramter to parameter

This commit is contained in:
monte.ohrt
2011-11-14 14:53:16 +00:00
parent 9a9dd9a7ba
commit 55fc3b1bc7
4 changed files with 10 additions and 10 deletions

View File

@@ -9,11 +9,11 @@
/**
* evaluate compiler parameter
*
* @param array $params paramter array as given to the compiler function
* @param integer $index array index of the paramter to convert
* @param mixed $default value to be returned if the paramter is not present
* @return mixed evaluated value of paramter or $default
* @throws SmartyException if paramter is not a literal (but an expression, variable, …)
* @param array $params parameter array as given to the compiler function
* @param integer $index array index of the parameter to convert
* @param mixed $default value to be returned if the parameter is not present
* @return mixed evaluated value of parameter or $default
* @throws SmartyException if parameter is not a literal (but an expression, variable, …)
* @author Rodney Rehm
*/
function smarty_literal_compiler_param($params, $index, $default=null)