Updated the view cart info in light of the changes to the cart class.
diff --git a/user_guide/libraries/cart.html b/user_guide/libraries/cart.html
index d63be49..bd3caef 100644
--- a/user_guide/libraries/cart.html
+++ b/user_guide/libraries/cart.html
@@ -200,8 +200,8 @@
 			<?php endif; ?>

 				

 	  </td>

-	  <td style="text-align:right"><?php echo $items['price']; ?></td>

-	  <td style="text-align:right">$<?php echo $items['subtotal']; ?></td>

+	  <td style="text-align:right"><?php echo $this->cart->format_number($items['price']); ?></td>

+	  <td style="text-align:right">$<?php echo $this->cart->format_number($items['subtotal']); ?></td>

 	</tr>

 

 <?php $i++; ?>

@@ -211,7 +211,7 @@
 <tr>

   <td colspan="2"> </td>

   <td class="right"><strong>Total</strong></td>

-  <td class="right">$<?php echo $this->cart->total(); ?></td>

+  <td class="right">$<?php echo $this->cart->format_number($this->cart->total()); ?></td>

 </tr>

 

 </table>

@@ -222,7 +222,6 @@
 

 

 

-

 <h2>Updating The Cart</h2>

 

 <p>To update the information in your cart, you must pass an array containing the <kbd>Row ID</kbd> and quantity to the <dfn>$this->cart->update()</dfn> function:</p>