From 6854330a83fbe54a61dbae95adc378b4fac41a38 Mon Sep 17 00:00:00 2001 From: Christopher Fremond <34804391+Frenchris@users.noreply.github.com> Date: Fri, 2 Jul 2021 18:32:06 +0100 Subject: [PATCH] Update README.md --- subjects/printnbrinorder/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/subjects/printnbrinorder/README.md b/subjects/printnbrinorder/README.md index d634dea0..674c46a7 100644 --- a/subjects/printnbrinorder/README.md +++ b/subjects/printnbrinorder/README.md @@ -3,7 +3,7 @@ ### Instructions Write a function which prints the digits of an `int` passed in parameter in ascending order. -All possible values of type `int` have to go through, besides negative numbers. +All possible values of type `int` have to go through, excluding negative numbers. Conversion to `int64` is not allowed. ### Expected function