Changed path in footer comment of cache dummy.
diff --git a/system/libraries/Cache/drivers/Cache_dummy.php b/system/libraries/Cache/drivers/Cache_dummy.php
index de47acb..f96a68e 100644
--- a/system/libraries/Cache/drivers/Cache_dummy.php
+++ b/system/libraries/Cache/drivers/Cache_dummy.php
@@ -10,29 +10,29 @@
  * @license		http://codeigniter.com/user_guide/license.html
  * @link		http://codeigniter.com
  * @since		Version 2.0
- * @filesource	
+ * @filesource
  */
 
 // ------------------------------------------------------------------------
 
 /**
- * CodeIgniter Dummy Caching Class 
+ * CodeIgniter Dummy Caching Class
  *
  * @package		CodeIgniter
  * @subpackage	Libraries
  * @category	Core
  * @author		ExpressionEngine Dev Team
- * @link		
+ * @link
  */
 
 class CI_Cache_dummy extends CI_Driver {
 
 	/**
-	 * Get 
+	 * Get
 	 *
 	 * Since this is the dummy class, it's always going to return FALSE.
 	 *
-	 * @param 	string	
+	 * @param 	string
 	 * @return 	Boolean		FALSE
 	 */
 	public function get($id)
@@ -40,8 +40,8 @@
 		return FALSE;
 	}
 
-	// ------------------------------------------------------------------------	
-	
+	// ------------------------------------------------------------------------
+
 	/**
 	 * Cache Save
 	 *
@@ -55,7 +55,7 @@
 	{
 		return TRUE;
 	}
-	
+
 	// ------------------------------------------------------------------------
 
 	/**
@@ -112,7 +112,7 @@
 	/**
 	 * Is this caching driver supported on the system?
 	 * Of course this one is.
-	 * 
+	 *
 	 * @return TRUE;
 	 */
 	public function is_supported()
@@ -121,9 +121,9 @@
 	}
 
 	// ------------------------------------------------------------------------
-	
+
 }
 // End Class
 
-/* End of file Cache_apc.php */
-/* Location: ./system/libraries/Cache/drivers/Cache_apc.php */
\ No newline at end of file
+/* End of file Cache_dummy.php */
+/* Location: ./system/libraries/Cache/drivers/Cache_dummy.php */
\ No newline at end of file