example typo fix
diff --git a/user_guide/changelog.html b/user_guide/changelog.html
index e02ca28..e12e343 100644
--- a/user_guide/changelog.html
+++ b/user_guide/changelog.html
@@ -115,7 +115,7 @@
<h3>Bug fixes for 1.7.0</h3>
<ul>
<li>Fixed bug in <kbd>xss_clean()</kbd> that could remove some desirable tag attributes.</li>
- <li>Fixed assorted user guide typos or examples (#4807, #4812, #4840, #4862, #4864, #4899, #4930, #5006, #5071, #5158, #5229, #5254).</li>
+ <li>Fixed assorted user guide typos or examples (#4807, #4812, #4840, #4862, #4864, #4899, #4930, #5006, #5071, #5158, #5229, #5254, #5351).</li>
<li>Fixed an edit from 1.6.3 that made the $robots array in user_agents.php go poof.</li>
<li>Fixed a bug in the <a href="libraries/email.html">Email library</a> with quoted-printable encoding improperly encoding space and tab characters.</li>
<li>Modified XSS sanitization to no longer add semicolons after &[single letter], such as in M&M's, B&B, etc.</li>
diff --git a/user_guide/libraries/form_validation.html b/user_guide/libraries/form_validation.html
index 0f89fb8..8485c7d 100644
--- a/user_guide/libraries/form_validation.html
+++ b/user_guide/libraries/form_validation.html
@@ -736,7 +736,7 @@
<code>$config = array(<br />
- '<kbd>signup</kbd>' = array(<br />
+ '<kbd>signup</kbd>' => array(<br />
array(<br />
'field' => 'username',<br />
'label' => 'Username',<br />
@@ -758,7 +758,7 @@
'rules' => 'required'<br />
)<br />
),<br />
- '<kbd>email</kbd>' = array(<br />
+ '<kbd>email</kbd>' => array(<br />
array(<br />
'field' => 'emailaddress',<br />
'label' => 'EmailAddress',<br />