Updated comment messages.
diff --git a/system/libraries/Form_validation.php b/system/libraries/Form_validation.php
index 5c3c7c6..9efa9f3 100644
--- a/system/libraries/Form_validation.php
+++ b/system/libraries/Form_validation.php
@@ -608,7 +608,7 @@
 				// Set the message type
 				$type = in_array('required', $rules) ? 'required' : 'isset';
 
-				// Check if a custom message defined, else use default one
+				// Check if a custom message defined
 				if (isset($this->_field_data[$row['field']]['error_msg'][$type]))
 				{
 					$line = $this->_field_data[$row['field']]['error_msg'][$type];
@@ -757,7 +757,7 @@
 			// Did the rule test negatively? If so, grab the error.
 			if ($result === FALSE)
 			{
-				// Check if a custom message defined, else use default one
+				// Check if a custom message defined
 				if(isset($this->_field_data[$row['field']]['error_msg'][$rule]))
 				{
 					$line = $this->_field_data[$row['field']]['error_msg'][$rule];