[ci skip] Polish changes from #2874
diff --git a/system/libraries/Cart.php b/system/libraries/Cart.php
index 389b1b7..5b05974 100644
--- a/system/libraries/Cart.php
+++ b/system/libraries/Cart.php
@@ -61,8 +61,6 @@
 	public $product_name_safe	= TRUE;
 
 	// --------------------------------------------------------------------------
-	// Protected variables. Do not change!
-	// --------------------------------------------------------------------------
 
 	/**
 	 * Reference to CodeIgniter instance
@@ -357,9 +355,9 @@
 			{
 				$items['price'] = (float) $items['price'];
 			}
-			
-			// product id & name shouldn't be changed			
-			foreach (array_diff($keys, array('id', 'name')) as $key) 
+
+			// product id & name shouldn't be changed
+			foreach (array_diff($keys, array('id', 'name')) as $key)
 			{
 				$this->_cart_contents[$items['rowid']][$key] = $items[$key];
 			}