From 0b3538bcca970ecd94c6f6fd3e6fe17e4118586a Mon Sep 17 00:00:00 2001 From: Michele Sessa Date: Wed, 14 Sep 2022 16:07:08 +0100 Subject: [PATCH] docs(box_it): clarify the subject the meaning of after a number is now more clear --- subjects/box_it/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/subjects/box_it/README.md b/subjects/box_it/README.md index eb4cb09f..05070ea3 100644 --- a/subjects/box_it/README.md +++ b/subjects/box_it/README.md @@ -4,7 +4,7 @@ Create the following **functions**: -- `transform_and_save_on_heap`: which accepts a string of numbers separated by spaces. Each number may or may not have a `'k'` as a suffix which represents kilograms. The function transforms those numbers into a vector of `u32`, and saves them in the heap using `Box`. +- `transform_and_save_on_heap`: which accepts a string of numbers separated by spaces. If a number has a `'k'` as a suffix it should be multiplied by 1000. The function transforms those numbers into a vector of `u32`, and saves them in the heap using `Box`. - `take_value_ownership`: which accepts the return value from `transform_and_save_on_heap`, unboxes the value, and returns it.