diff --git a/1-js/02-first-steps/14-function-basics/4-pow/solution.md b/1-js/02-first-steps/14-function-basics/4-pow/solution.md index 65ab43f5..19fe9011 100644 --- a/1-js/02-first-steps/14-function-basics/4-pow/solution.md +++ b/1-js/02-first-steps/14-function-basics/4-pow/solution.md @@ -14,7 +14,7 @@ let x = prompt("x?", ''); let n = prompt("n?", ''); if (n < 1) { - alert(`Степень ${n} не поддерживается, только целая, большая 0`); + alert(`Power ${n} is not supported, use a positive integer`); } else { alert( pow(x, n) ); }