From 42f22f743b9ca34b80bbbbf7df180150cd83ec7f Mon Sep 17 00:00:00 2001 From: PirozhokForAlem <52990395+PirozhokForAlem@users.noreply.github.com> Date: Fri, 12 Feb 2021 16:28:59 +0600 Subject: [PATCH] Update README.md --- subjects/find_factorial/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/subjects/find_factorial/README.md b/subjects/find_factorial/README.md index 183e78fe..c639ab8e 100644 --- a/subjects/find_factorial/README.md +++ b/subjects/find_factorial/README.md @@ -6,7 +6,7 @@ Complete the **function** `factorial` to return the factorial of a given number. As a reminder the factorial of a number is the product of all the integers from 1 to that number. -Example: the factorial of 6 (written 6!) is 1*2*3*4*5*6 = 720. +Example: the factorial of 6 (written 6!) is 1 * 2 * 3 * 4 * 5 * 6 = 720. Do not forget the rules for 0 and 1.