From a31d4a2e8cb2a8d5a85deea540a24c42f5db9827 Mon Sep 17 00:00:00 2001 From: Tiago Collot Date: Tue, 27 Sep 2022 13:22:42 +0100 Subject: [PATCH] docs(descendappendrange): change subject instructions --- subjects/descendappendrange/README.md | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/subjects/descendappendrange/README.md b/subjects/descendappendrange/README.md index 19fcfa23..8eba10ab 100644 --- a/subjects/descendappendrange/README.md +++ b/subjects/descendappendrange/README.md @@ -4,9 +4,9 @@ - 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`, return a `nil` value. +- If `max` is inferior than or equal to `min`, return an empty slice. - `make()` is not allowed for this exercise. @@ -26,13 +26,13 @@ Here is a possible program to test your function: package main import ( - "fmt" - "piscine" + "fmt" + "piscine" ) func main() { - fmt.Println(piscine.DescendAppendRange(10, 5)) - fmt.Println(piscine.DescendAppendRange(5, 10)) + fmt.Println(piscine.DescendAppendRange(10, 5)) + fmt.Println(piscine.DescendAppendRange(5, 10)) } ```