We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 296232e commit 7444d2eCopy full SHA for 7444d2e
1-js/2-first-steps/19-recursion/2-factorial/solution.md
@@ -22,4 +22,4 @@ function factorial(n) {
22
alert( factorial(5) ); // 120
23
```
24
25
-В этом случае вызов `factorial(1)` сведется к `1*factorial(0)`, будет дополнительный шаг рекурсии.
+В этом случае вызов `factorial(1)` сведётся к `1*factorial(0)`, будет дополнительный шаг рекурсии.
0 commit comments