From a9dadba43456fb1053463077e5903252e4a2c42d Mon Sep 17 00:00:00 2001 From: Andrew Savchenko Date: Thu, 23 Feb 2017 01:33:48 +0200 Subject: [PATCH] Fix events names in README.md --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 4fe9d7a..434c183 100644 --- a/README.md +++ b/README.md @@ -339,9 +339,9 @@ The cart also has events build in. There are five events available for you to li | Event | Fired | Parameter | | ------------- | ---------------------------------------- | -------------------------------- | -| cart.add | When an item was added to the cart. | The `CartItem` that was added. | -| cart.update | When an item in the cart was updated. | The `CartItem` that was updated. | -| cart.remove | When an item is removed from the cart. | The `CartItem` that was removed. | +| cart.added | When an item was added to the cart. | The `CartItem` that was added. | +| cart.updated | When an item in the cart was updated. | The `CartItem` that was updated. | +| cart.removed | When an item is removed from the cart. | The `CartItem` that was removed. | | cart.stored | When the content of a cart was stored. | - | | cart.restored | When the content of a cart was restored. | - |