Skip to content

Commit 9defc18

Browse files
committed
Fixed some spelling errors.
1 parent 02fe1cf commit 9defc18

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

concepts/loops/introduction.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# Introduction
22

33
There are two looping constructs.
4-
`while` loops for _indefinite_ (uncounted) iteration and `for` loops for _defininte_, (counted) iteration.
4+
`while` loops for _indefinite_ (uncounted) iteration and `for` loops for _definite_, (counted) iteration.
55
The keywords `break`, `continue`, and `else` help customize loop behavior.
66

77
`while` loops continue to exectute as long as the loop expression or "test" evaluates to `True`, terminating when it evaluates to `False`.

0 commit comments

Comments
 (0)