fixed a missing semi colon in pagination example
diff --git a/user_guide/libraries/pagination.html b/user_guide/libraries/pagination.html
index d91a73e..5592bc2 100644
--- a/user_guide/libraries/pagination.html
+++ b/user_guide/libraries/pagination.html
@@ -160,7 +160,7 @@
<h2>Customizing the "Next" Link</h2>
-<h4>$config['next_link'] = '&gt';</h4>
+<h4>$config['next_link'] = '&gt;';</h4>
<p>The text you would like shown in the "next" page link.</p>
<h4>$config['next_tag_open'] = '<div>';</h4>
@@ -171,7 +171,7 @@
<h2>Customizing the "Previous" Link</h2>
-<h4>$config['prev_link'] = '&lt';</h4>
+<h4>$config['prev_link'] = '&lt;';</h4>
<p>The text you would like shown in the "previous" page link.</p>
<h4>$config['prev_tag_open'] = '<div>';</h4>