From 05b27913e6d7070e8dfccd82857f093337ec89bb Mon Sep 17 00:00:00 2001 From: Christopher Fremond <34804391+Frenchris@users.noreply.github.com> Date: Thu, 3 Oct 2019 07:30:50 +0100 Subject: [PATCH] Update reverserange.en.md --- subjects/reverserange.en.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/subjects/reverserange.en.md b/subjects/reverserange.en.md index 8eb52e86..5eb8e79d 100644 --- a/subjects/reverserange.en.md +++ b/subjects/reverserange.en.md @@ -6,7 +6,7 @@ Write a program which must: - **Allocate (with make())** an array of integers. -- Fill it with consecutive values that begins at the second argument and end at the first argument (Including the first and second argument !). +- Fill it with consecutive values that begins at the second argument and end at the first argument (Including the values of thoses arguments !). - That prints the array.