From 85c0863414d8a85c7dec60526eef3868edfdb468 Mon Sep 17 00:00:00 2001 From: Pav01Founders <92518689+Pav01Founders@users.noreply.github.com> Date: Thu, 14 Oct 2021 13:15:03 +0100 Subject: [PATCH] Update README.md Updated instructions. --- subjects/makerange/README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/subjects/makerange/README.md b/subjects/makerange/README.md index feccdab2..b02e5d89 100644 --- a/subjects/makerange/README.md +++ b/subjects/makerange/README.md @@ -3,11 +3,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. +The must function return a slice of `int`s with all the values between 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. `append` is not allowed for this exercise.