diff --git a/docs/programmers.sgml b/docs/programmers.sgml index e837123b..22bb341b 100644 --- a/docs/programmers.sgml +++ b/docs/programmers.sgml @@ -499,7 +499,7 @@ $smarty->append(array("city" => "Lincoln","state" => "Nebraska"));append_by_ref - void assign + void append_by_ref string varname mixed var @@ -511,7 +511,7 @@ $smarty->append(array("city" => "Lincoln","state" => "Nebraska")); Technical Note - assign_by_append() is more efficient than append() since it does not create + append_by_ref() is more efficient than append() since it does not create an in-memory copy of the variable. Instead it refers to the actual variable in the memory heap. Be aware if you alter the original variable after it is assigned, the assigned variable sees the changes! PHP 5.0 @@ -560,7 +560,7 @@ $smarty->assign(array("city" => "Lincoln","state" => "Nebraska"));assign_by_ref - void assign + void assign_by_ref string varname mixed var