From cf5befdec6ef2f7092373cfa132266d8ad05f5ca Mon Sep 17 00:00:00 2001 From: Tiago Collot Date: Wed, 7 Sep 2022 14:29:09 +0100 Subject: [PATCH] style(descendappendrange): formatting and missing bacticks --- subjects/descendappendrange/README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/subjects/descendappendrange/README.md b/subjects/descendappendrange/README.md index c98b7d57..4fd26fff 100644 --- a/subjects/descendappendrange/README.md +++ b/subjects/descendappendrange/README.md @@ -4,11 +4,11 @@ - Write a function that takes an `int` max and an `int` min as parameters. The function should return a slice of `int`s with all the values between the max and min. -- The `Max`must be included, and min must be excluded. +- The `max`must be included, and `min` must be excluded. -- If max is inferior than or equal to min, a `nil` slice is returned. +- If `max` is inferior than or equal to `min`, return a `nil` value. -- `make`is not allowed for this exercise +- `make()` is not allowed for this exercise. ### Expected function