From 4d9d0e6882aad02b6d3c17577f06d18d6b1690d8 Mon Sep 17 00:00:00 2001 From: Pav01Founders <92518689+Pav01Founders@users.noreply.github.com> Date: Thu, 14 Oct 2021 13:11:39 +0100 Subject: [PATCH] Update README.md Updated instructions. --- subjects/appendrange/README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/subjects/appendrange/README.md b/subjects/appendrange/README.md index 0b0140da..97e5fb61 100644 --- a/subjects/appendrange/README.md +++ b/subjects/appendrange/README.md @@ -2,11 +2,11 @@ ### Instructions -Write a function that takes an `int` min and an `int` max as parameters. That function returns a slice of `int`s with all the values between min and max. +Write a function that takes an `int` min and an `int` max as parameters. The function should return a slice of `int`s with all the values between the min and max. Min is included, and max is excluded. -If min is superior or equal to max, a `nil` slice is returned. +If min is greater than or equal to max, a `nil` slice is returned. `make` is not allowed for this exercise.