Skip to content

Commit 2d82b97

Browse files
authored
Fix typo discovered by codespell
1 parent bffbaa5 commit 2d82b97

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Python Program to Display Fibonacci Sequence Using Recursion

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ nterms = 10
88

99
# check if the number of terms is valid
1010
if nterms <= 0:
11-
print("Plese enter a positive integer")
11+
print("Please enter a positive integer")
1212
else:
1313
print("Fibonacci sequence:")
1414
for i in range(nterms):

0 commit comments

Comments
 (0)