From f1c8298ad4f1c63520153dd17806564f580fac8b Mon Sep 17 00:00:00 2001 From: OGordoo <39002518+OGordoo@users.noreply.github.com> Date: Wed, 27 Oct 2021 16:33:35 +0100 Subject: [PATCH] Typo correction --- subjects/makerange/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/subjects/makerange/README.md b/subjects/makerange/README.md index b02e5d89..50af52d0 100644 --- a/subjects/makerange/README.md +++ b/subjects/makerange/README.md @@ -3,7 +3,7 @@ ### Instructions Write a function that takes an `int` min and an `int` max as parameters. -The must function return a slice of `int`s with all the values between min and max. +The function must return a slice of `int`s with all the values between min and max. Min is included, and max is excluded.