Skip to content

Commit 7444d2e

Browse files
committed
Исправление мелких ошибок.
Буква ё.
1 parent 296232e commit 7444d2e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

1-js/2-first-steps/19-recursion/2-factorial/solution.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,4 +22,4 @@ function factorial(n) {
2222
alert( factorial(5) ); // 120
2323
```
2424

25-
В этом случае вызов `factorial(1)` сведется к `1*factorial(0)`, будет дополнительный шаг рекурсии.
25+
В этом случае вызов `factorial(1)` сведётся к `1*factorial(0)`, будет дополнительный шаг рекурсии.

0 commit comments

Comments
 (0)