From 3a5196a8a68e2283ea3939fd1754f04046a214d4 Mon Sep 17 00:00:00 2001 From: Michele Sessa Date: Thu, 15 Sep 2022 12:13:05 +0100 Subject: [PATCH] DEV-3503 docs(sales): fix two typos --- subjects/sales/README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/subjects/sales/README.md b/subjects/sales/README.md index 9e9215d4..9a0f49d3 100644 --- a/subjects/sales/README.md +++ b/subjects/sales/README.md @@ -2,7 +2,7 @@ ### Instructions -Your going to make a shopping system. It will have a store where the products will be saved, and a cart which will contain items from which a receipt will be generated. +You are going to make a shopping system. It will have a store where the products will be saved, and a cart which will contain items from which a receipt will be generated. **"Buy three, get one free".** @@ -12,7 +12,7 @@ You will have to implement for the `Cart` structure the following **functions**: - `new`: that will initialize the cart. - `insert_item`: will receive a reference to `Store` and a `String`. Just like the name says, it will insert the item to the cart. -- `generate_receipt`: returns a vector of sorted floats. This function must generate the receipt just like the example below, using the promotion. AIt should save the result in the `receipt` field. +- `generate_receipt`: returns a vector of sorted floats. This function must generate the receipt just like the example below, using the promotion. It should save the result in the `receipt` field. ### Expected Function