Fixed a comment typo
diff --git a/system/libraries/Session.php b/system/libraries/Session.php
index 9fad08c..ab14bfe 100644
--- a/system/libraries/Session.php
+++ b/system/libraries/Session.php
@@ -160,7 +160,7 @@
 		// Unserialize the session array

 		$session = @unserialize(strip_slashes($session));

 		

-		// Is the session data we unserialized and array with the correct format?

+		// Is the session data we unserialized an array with the correct format?

 		if ( ! is_array($session) OR ! isset($session['session_id']) OR ! isset($session['ip_address']) OR ! isset($session['user_agent']) OR ! isset($session['last_activity']))

 		{

 			$this->sess_destroy();