From f169a1a807d845a501f5dbbd184b0266231a1d78 Mon Sep 17 00:00:00 2001 From: SaumyaRai2010 Date: Thu, 26 Aug 2021 20:53:17 +0530 Subject: [PATCH] Corrected spelling of factorial --- Programs/P04_Factorial.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Programs/P04_Factorial.py b/Programs/P04_Factorial.py index fb29789..1fb14dc 100644 --- a/Programs/P04_Factorial.py +++ b/Programs/P04_Factorial.py @@ -1,5 +1,5 @@ #Author: OMKAR PATHAK -#This program finds the favtorial of the specified numbers +#This program finds the factorial of the specified numbers #For example, factorial of 5 = 5*4*3*2*1 = 120 def factorial(number):