diff --git a/docs/designers.sgml b/docs/designers.sgml
index 3de14047..df5000ee 100644
--- a/docs/designers.sgml
+++ b/docs/designers.sgml
@@ -3607,7 +3607,7 @@ You must supply a <b>state</b>.
All parameters that are not in the list above are printed as
name/value-pairs inside each of the created <input>-tags.
-
html_checkboxes
@@ -3617,7 +3617,7 @@ require('Smarty.php.class');
$smarty = new Smarty;
$smarty->assign('cust_ids', array(1000,1001,1002,1003));
$smarty->assign('cust_names', array('Joe Schmoe','Jack Smith','Jane
-Johnson','CHarlie Brown'));
+Johnson','Charlie Brown'));
$smarty->assign('customer_id', 1001);
$smarty->display('index.tpl');
@@ -3634,7 +3634,7 @@ $smarty = new Smarty;
$smarty->assign('cust_checkboxes', array(
1001 => 'Joe Schmoe',
1002 => 'Jack Smith',
- 1003 => 'Jane Johnson','Carlie Brown'));
+ 1003 => 'Jane Johnson','Charlie Brown'));
$smarty->assign('customer_id', 1001);
$smarty->display('index.tpl');