fix typos

This commit is contained in:
mohrt
2002-08-15 15:21:59 +00:00
parent 0ea52c692d
commit c63568e5ac

View File

@@ -499,7 +499,7 @@ $smarty->append(array("city" => "Lincoln","state" => "Nebraska"));</programlisti
<title>append_by_ref</title> <title>append_by_ref</title>
<funcsynopsis> <funcsynopsis>
<funcprototype> <funcprototype>
<funcdef>void <function>assign</function></funcdef> <funcdef>void <function>append_by_ref</function></funcdef>
<paramdef>string <parameter>varname</parameter></paramdef> <paramdef>string <parameter>varname</parameter></paramdef>
<paramdef>mixed <parameter>var</parameter></paramdef> <paramdef>mixed <parameter>var</parameter></paramdef>
</funcprototype> </funcprototype>
@@ -511,7 +511,7 @@ $smarty->append(array("city" => "Lincoln","state" => "Nebraska"));</programlisti
<note> <note>
<title>Technical Note</title> <title>Technical Note</title>
<para> <para>
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 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 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 after it is assigned, the assigned variable sees the changes! PHP 5.0
@@ -560,7 +560,7 @@ $smarty->assign(array("city" => "Lincoln","state" => "Nebraska"));</programlisti
<title>assign_by_ref</title> <title>assign_by_ref</title>
<funcsynopsis> <funcsynopsis>
<funcprototype> <funcprototype>
<funcdef>void <function>assign</function></funcdef> <funcdef>void <function>assign_by_ref</function></funcdef>
<paramdef>string <parameter>varname</parameter></paramdef> <paramdef>string <parameter>varname</parameter></paramdef>
<paramdef>mixed <parameter>var</parameter></paramdef> <paramdef>mixed <parameter>var</parameter></paramdef>
</funcprototype> </funcprototype>