diff --git a/user_guide_src/source/concepts/security.rst b/user_guide_src/source/concepts/security.rst
index 147c2a94c6a4..7efc051a49cd 100644
--- a/user_guide_src/source/concepts/security.rst
+++ b/user_guide_src/source/concepts/security.rst
@@ -39,7 +39,7 @@ CodeIgniter provisions
======================
- :doc:`HTTP library <../incoming/incomingrequest>` provides for input field filtering & content metadata
-- Form validation library
+- Validation library
*********************************************
A2 Weak authentication and session management
@@ -82,7 +82,7 @@ CodeIgniter provisions
======================
- esc function
-- Form validation library
+- Validation library
***********************************
A4 Insecure Direct Object Reference
@@ -103,7 +103,7 @@ OWASP recommendations
CodeIgniter provisions
======================
-- Form validation library
+- Validation library
- Easy to add third party authentication
****************************
diff --git a/user_guide_src/source/helpers/form_helper.rst b/user_guide_src/source/helpers/form_helper.rst
index 676a16adf5cf..8f270085f85f 100644
--- a/user_guide_src/source/helpers/form_helper.rst
+++ b/user_guide_src/source/helpers/form_helper.rst
@@ -510,8 +510,8 @@ The following functions are available:
/>
/>
- .. note:: If you are using the Form Validation class, you must always specify
+ .. note:: If you are using the Validation class, you must always specify
a rule for your field, even if empty, in order for the ``set_*()``
- functions to work. This is because if a Form Validation object is
+ functions to work. This is because if a Validation object is
defined, the control for ``set_*()`` is handed over to a method of the
class instead of the generic helper function.
diff --git a/user_guide_src/source/libraries/validation.rst b/user_guide_src/source/libraries/validation.rst
index 72a399a845a3..5710687ee1fd 100644
--- a/user_guide_src/source/libraries/validation.rst
+++ b/user_guide_src/source/libraries/validation.rst
@@ -1,7 +1,7 @@
.. _validation:
Validation
-##################################################
+##########
CodeIgniter provides a comprehensive data validation class that
helps minimize the amount of code you'll write.
@@ -11,7 +11,7 @@ helps minimize the amount of code you'll write.
:depth: 2
Overview
-************************************************
+********
Before explaining CodeIgniter's approach to data validation, let's
describe the ideal scenario:
@@ -43,7 +43,7 @@ HTML. Form validation, while simple to create, is generally very messy
and tedious to implement.
Form Validation Tutorial
-************************************************
+************************
What follows is a "hands on" tutorial for implementing CodeIgniter's Form
Validation.
@@ -60,7 +60,7 @@ Let's create those three things, using a member sign-up form as the
example.
The Form
-================================================
+========
Using a text editor, create a form called **Signup.php**. In it, place this
code and save it to your **app/Views/** folder::
@@ -95,7 +95,7 @@ code and save it to your **app/Views/** folder::