From ee14e69c39301acf41497342dde72717f8f78f3b Mon Sep 17 00:00:00 2001 From: davhojt Date: Wed, 8 Jun 2022 07:24:52 +0300 Subject: [PATCH] docs(easy_traits) correct grammar --- subjects/easy_traits/README.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/subjects/easy_traits/README.md b/subjects/easy_traits/README.md index b6c9e5fe..5a9f39e6 100644 --- a/subjects/easy_traits/README.md +++ b/subjects/easy_traits/README.md @@ -2,13 +2,13 @@ ### Instructions -Your task is to implement the trait `AppendStr` for the type StringValue. +Your task is to implement the trait `AppendStr` for the type `StringValue`. The trait `AppendStr` has the following functions: -- `append_str`, that appends to the value of the structure a new_str of type String -- `append_number`, that appends to the value of the structure a new_number of type f64 -- `remove_punctuation_marks`, that removes from the value of the structure the following punctuation marks: `. , ? !` +- `append_str`: that appends to the string to the `value`. +- `append_number`: that appends the number to the `value`. +- `remove_punctuation_marks`: that removes punctuation from the `value` (`.`, `,`, `?` and `!`). ### Expected Function