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)