Skip to content

Commit abd31ba

Browse files
authored
Initialzed - initialized spelling corrections. (#3805)
1 parent dc66e59 commit abd31ba

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

exercises/practice/luhn/.approaches/recursion/content.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ class Luhn:
2929

3030
```
3131

32-
The `Luhn` object is initialzed with the `card_num` value, which is the number to be validated with the Luhn algorithm.
32+
The `Luhn` object is initialized with the `card_num` value, which is the number to be validated with the Luhn algorithm.
3333
The result of the validation is returned from `Luhn`'s `valid()` method.
3434
In this approach, a member variable is set to the result of running the Luhn algorithm.
3535
That variable is returned from the `valid()` method.

exercises/practice/luhn/.approaches/replace-reverse-enumerate/content.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ class Luhn:
2929

3030
```
3131

32-
The `Luhn` object is initialzed with the `card_num` value, which is the number to be validated with the Luhn algorithm.
32+
The `Luhn` object is initialized with the `card_num` value, which is the number to be validated with the Luhn algorithm.
3333
The result of the validation is returned from `Luhn`'s `valid()` method.
3434
In this approach, a member variable is set to the result of running the Luhn algorithm.
3535
That variable is returned from the `valid()` method.

exercises/practice/luhn/.approaches/reversed-for/content.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ class Luhn:
3030

3131
```
3232

33-
The `Luhn` object is initialzed with the `card_num` value, which is the number to be validated with the Luhn algorithm.
33+
The `Luhn` object is initialized with the `card_num` value, which is the number to be validated with the Luhn algorithm.
3434
The result of the validation is returned from `Luhn`'s `valid()` method.
3535
In this approach, a member variable is set to the result of running the Luhn algorithm.
3636
That variable is returned from the `valid()` method.

0 commit comments

Comments
 (0)