minor source formatting
diff --git a/system/codeigniter/CodeIgniter.php b/system/codeigniter/CodeIgniter.php
index 4eb31cb..5a01eb8 100644
--- a/system/codeigniter/CodeIgniter.php
+++ b/system/codeigniter/CodeIgniter.php
@@ -229,8 +229,8 @@
 		}

 

 		// Call the requested method.

-		// Any URI segments present (besides the class/function) will be passed to the method for convenience		

-		call_user_func_array(array(&$CI, $method), array_slice($URI->rsegments, 2));		

+		// Any URI segments present (besides the class/function) will be passed to the method for convenience

+		call_user_func_array(array(&$CI, $method), array_slice($URI->rsegments, 2));

 	}

 }

 

@@ -273,6 +273,5 @@
 }

 

 

-

 /* End of file CodeIgniter.php */

 /* Location: ./system/codeigniter/CodeIgniter.php */
\ No newline at end of file
diff --git a/system/codeigniter/Common.php b/system/codeigniter/Common.php
index d4c88c1..8b80b42 100644
--- a/system/codeigniter/Common.php
+++ b/system/codeigniter/Common.php
@@ -39,18 +39,18 @@
  *

  * @access	private

  * @return	void

- */	

+ */

 function is_really_writable($file)

 {

 	if (is_dir($file))

 	{

 		$file = rtrim($file, '/').'/'.md5(rand(1,100));

-		

+

 		if (($fp = @fopen($file, FOPEN_WRITE_CREATE)) === FALSE)

 		{

 			return FALSE;

 		}

-		

+

 		fclose($fp);

 		@chmod($file, DIR_WRITE_MODE);

 		@unlink($file);

@@ -88,7 +88,7 @@
 	{

 		return $objects[$class];

 	}

-			

+

 	// If the requested class does not exist in the application/libraries

 	// folder we'll load the native class from the system/libraries folder.	

 	if (file_exists(APPPATH.'libraries/'.config_item('subclass_prefix').$class.EXT))

@@ -116,7 +116,7 @@
 		$objects[$class] = TRUE;

 		return $objects[$class];

 	}

-		

+

 	if ($is_subclass == TRUE)

 	{

 		$name = config_item('subclass_prefix').$class;

@@ -139,16 +139,16 @@
 function &get_config()

 {

 	static $main_conf;

-		

+

 	if (! isset($main_conf))

 	{

 		if (! file_exists(APPPATH.'config/config'.EXT))

 		{

 			exit('The configuration file config'.EXT.' does not exist.');

 		}

-		

+

 		require(APPPATH.'config/config'.EXT);

-		

+

 		if (! isset($config) OR ! is_array($config))

 		{

 			exit('Your config file does not appear to be formatted correctly.');

@@ -172,7 +172,7 @@
 	if (! isset($config_item[$item]))

 	{

 		$config =& get_config();

-		

+

 		if (! isset($config[$item]))

 		{

 			return FALSE;

@@ -295,6 +295,6 @@
 }

 

 

-
-/* End of file Common.php */
+

+/* End of file Common.php */

 /* Location: ./system/codeigniter/Common.php */
\ No newline at end of file
diff --git a/system/libraries/Benchmark.php b/system/libraries/Benchmark.php
index f83e864..899350b 100644
--- a/system/libraries/Benchmark.php
+++ b/system/libraries/Benchmark.php
@@ -70,23 +70,23 @@
 		{

 			return '{elapsed_time}';

 		}

-		

+

 		if (! isset($this->marker[$point1]))

 		{

 			return '';

 		}

-		

+

 		if (! isset($this->marker[$point2]))

 		{

 			$this->marker[$point2] = microtime();

 		}

-			

+

 		list($sm, $ss) = explode(' ', $this->marker[$point1]);

 		list($em, $es) = explode(' ', $this->marker[$point2]);

 

 		return number_format(($em + $es) - ($sm + $ss), $decimals);

 	}

- 	

+

 	// --------------------------------------------------------------------

 

 	/**

@@ -108,6 +108,6 @@
 }

 

 // END CI_Benchmark class

-
-/* End of file Benchmark.php */
+

+/* End of file Benchmark.php */

 /* Location: ./system/libraries/Benchmark.php */
\ No newline at end of file
diff --git a/system/libraries/Config.php b/system/libraries/Config.php
index b1a9def..06e1cbe 100644
--- a/system/libraries/Config.php
+++ b/system/libraries/Config.php
@@ -82,10 +82,10 @@
 			if ($fail_gracefully === TRUE)

 			{

 				return FALSE;

-			}		

+			}

 			show_error('Your '.$file.EXT.' file does not appear to contain a valid configuration array.');

 		}

-		

+

 		if ($use_sections === TRUE)

 		{

 			if (isset($this->config[$file]))

@@ -120,16 +120,16 @@
 	 * @param	string	the index name

 	 * @param	bool

 	 * @return	string

-	 */		

+	 */

 	function item($item, $index = '')

-	{			

+	{	

 		if ($index == '')

 		{	

 			if (! isset($this->config[$item]))

 			{

 				return FALSE;

 			}

-		

+

 			$pref = $this->config[$item];

 		}

 		else

@@ -138,12 +138,12 @@
 			{

 				return FALSE;

 			}

-		

+

 			if (! isset($this->config[$index][$item]))

 			{

 				return FALSE;

 			}

-		

+

 			$pref = $this->config[$index][$item];

 		}

 

@@ -162,18 +162,18 @@
 	 * @param	string	the config item name

 	 * @param	bool

 	 * @return	string

-	 */		

+	 */

 	function slash_item($item)

 	{

 		if (! isset($this->config[$item]))

 		{

 			return FALSE;

 		}

-		

+

 		$pref = $this->config[$item];

-		

+

 		if ($pref != '' && substr($pref, -1) != '/')

-		{			

+		{	

 			$pref .= '/';

 		}

 

@@ -188,21 +188,21 @@
 	 * @access	public

 	 * @param	string	the URI string

 	 * @return	string

-	 */		

+	 */

 	function site_url($uri = '')

 	{

 		if (is_array($uri))

 		{

 			$uri = implode('/', $uri);

 		}

-		

+

 		if ($uri == '')

 		{

 			return $this->slash_item('base_url').$this->item('index_page');

 		}

 		else

 		{

-			$suffix = ($this->item('url_suffix') == FALSE) ? '' : $this->item('url_suffix');		

+			$suffix = ($this->item('url_suffix') == FALSE) ? '' : $this->item('url_suffix');

 			return $this->slash_item('base_url').$this->slash_item('index_page').preg_replace("|^/*(.+?)/*$|", "\\1", $uri).$suffix;

 		}

 	}

@@ -214,7 +214,7 @@
 	 *

 	 * @access	public

 	 * @return	string

-	 */		

+	 */

 	function system_url()

 	{

 		$x = explode("/", preg_replace("|/*(.+?)/*$|", "\\1", BASEPATH));

@@ -230,7 +230,7 @@
 	 * @param	string	the config item key

 	 * @param	string	the config item value

 	 * @return	void

-	 */		

+	 */

 	function set_item($item, $value)

 	{

 		$this->config[$item] = $value;