[ci skip] Clear some whitespace
diff --git a/system/libraries/Cart.php b/system/libraries/Cart.php
index cd46a6e..4441db4 100644
--- a/system/libraries/Cart.php
+++ b/system/libraries/Cart.php
@@ -348,8 +348,8 @@
 				unset($this->_cart_contents[$items['rowid']]);
 				return TRUE;
 			}
-		}		
-		
+		}
+
 		// find updatable keys
 		$keys = array_intersect(array_keys($this->_cart_contents[$items['rowid']]), array_keys($items));
 		// if a price was passed, make sure it contains valid data
@@ -362,7 +362,7 @@
 		foreach (array_diff($keys, array('id', 'name')) as $key)
 		{
 			$this->_cart_contents[$items['rowid']][$key] = $items[$key];
-		}		
+		}
 
 		return TRUE;
 	}