From 8b765f5b69acd000d7c601638cac3f853b430cab Mon Sep 17 00:00:00 2001 From: sarayu sree Date: Wed, 4 Oct 2023 16:05:28 +0530 Subject: [PATCH 1/2] seperation between description and docstrings --- maths/factorial.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/maths/factorial.py b/maths/factorial.py index 18cacdef9b1f..90a2eb3edb7a 100644 --- a/maths/factorial.py +++ b/maths/factorial.py @@ -1,4 +1,6 @@ -"""Factorial of a positive integer -- https://en.wikipedia.org/wiki/Factorial +""" + +Factorial of a positive integer -- https://en.wikipedia.org/wiki/Factorial """ From f827971006520e0da072b7752dd9ac2cb83492ce Mon Sep 17 00:00:00 2001 From: Tianyi Zheng Date: Tue, 10 Oct 2023 00:43:11 -0400 Subject: [PATCH 2/2] Update maths/factorial.py --- maths/factorial.py | 1 - 1 file changed, 1 deletion(-) diff --git a/maths/factorial.py b/maths/factorial.py index 90a2eb3edb7a..aaf90f384bb9 100644 --- a/maths/factorial.py +++ b/maths/factorial.py @@ -1,5 +1,4 @@ """ - Factorial of a positive integer -- https://en.wikipedia.org/wiki/Factorial """