From 23a0633ab48c35a8e6cf398ddc51a660b0bfb1e8 Mon Sep 17 00:00:00 2001 From: davhojt Date: Wed, 8 Jun 2022 06:46:34 +0300 Subject: [PATCH] docs(generics) correct grammar --- subjects/generics/README.md | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/subjects/generics/README.md b/subjects/generics/README.md index 571cfaf6..c7d5f203 100644 --- a/subjects/generics/README.md +++ b/subjects/generics/README.md @@ -2,13 +2,9 @@ ### Instructions -Write a **function** called `identity` which calculates the identity of a value (receives any data type and returns the same value). +Create a **function** named `identity` which calculates the identity of a value (receives any data type and returns the same value). -### Notions - -- [Generics](https://doc.rust-lang.org/book/ch10-01-syntax.html) - ### Expected Function (signature to be completed) @@ -38,3 +34,7 @@ Hello, world! 3 $ ``` + +### Notions + +- [Generics](https://doc.rust-lang.org/book/ch10-01-syntax.html)