From f6950b12d3f3d9d6decccb9495ccb85fd7ad6917 Mon Sep 17 00:00:00 2001 From: Kevin Harper Date: Sat, 18 May 2019 09:13:18 -0500 Subject: [PATCH] enter review comments --- guides/v2.3/graphql/reference/quote-add-simple-products.md | 2 +- guides/v2.3/graphql/reference/quote-update-cart-items.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/guides/v2.3/graphql/reference/quote-add-simple-products.md b/guides/v2.3/graphql/reference/quote-add-simple-products.md index 21f26a9d10f..968489bc4a5 100644 --- a/guides/v2.3/graphql/reference/quote-add-simple-products.md +++ b/guides/v2.3/graphql/reference/quote-add-simple-products.md @@ -26,7 +26,7 @@ The following example adds a simple product to a cart. The response contains the mutation { addSimpleProductsToCart( input: { - cart_id: "IeTUiU0oCXjm0uRqGCOuhQ2AuQatogjG", + cart_id: "IeTUiU0oCXjm0uRqGCOuhQ2AuQatogjG" cart_items: [ { data: { diff --git a/guides/v2.3/graphql/reference/quote-update-cart-items.md b/guides/v2.3/graphql/reference/quote-update-cart-items.md index f02631ba85c..c84c120c820 100644 --- a/guides/v2.3/graphql/reference/quote-update-cart-items.md +++ b/guides/v2.3/graphql/reference/quote-update-cart-items.md @@ -14,7 +14,7 @@ Setting the quantity to `0` removes an item from the cart. ## Example usage -The following example changes the quantity of cart item `13` to `3`. +The following example changes the quantity of cart item `13`. The new quantity is `3`. **Request**