From c46c81e46925f9b83cd592db946115a2af4d60e5 Mon Sep 17 00:00:00 2001 From: nprimo Date: Mon, 14 Nov 2022 13:29:31 +0000 Subject: [PATCH] docs(count_factorial_steps): improve subject readibility --- subjects/count_factorial_steps/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/subjects/count_factorial_steps/README.md b/subjects/count_factorial_steps/README.md index 63a5959a..6ba25d1a 100644 --- a/subjects/count_factorial_steps/README.md +++ b/subjects/count_factorial_steps/README.md @@ -4,7 +4,7 @@ Create a **function** named `count_factorial_steps` that receives a factorial number and counts how many multiplications are necessary to have this number. -If the argument is not a factorial or == 0 || 1 then the function should return 0. +If the argument is not a factorial, or it is equal 0 or 1, then the function should return 0. ```rust fn count_factorial_steps(factorial: u64) -> u64 {