From 10e454b6abf3106119c4288906656dc0b9832239 Mon Sep 17 00:00:00 2001 From: Zhongheng Liu Date: Sun, 5 Jan 2025 22:59:47 +0200 Subject: chore: correct typo --- recursion/recursion.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'recursion/recursion.py') diff --git a/recursion/recursion.py b/recursion/recursion.py index 792fede..1c67958 100644 --- a/recursion/recursion.py +++ b/recursion/recursion.py @@ -27,7 +27,7 @@ def draw_underline(l: int): def test(): range_end = 15 - print(f"Printing series of factorias from 1 to {range_end}\n{draw_underline(20)}") + print(f"Printing series of factorials from 1 to {range_end}\n{draw_underline(20)}") for i in range(1, range_end): print(fact(i), end=", " if i < range_end-1 else "\n") fib_until = 15 -- cgit