From f72405a263e1d1adbc8d17179ee46af70842bb55 Mon Sep 17 00:00:00 2001 From: Ilya Kantor Date: Mon, 29 Jul 2019 18:02:18 +0300 Subject: [PATCH] minor --- 1-js/02-first-steps/14-function-basics/4-pow/solution.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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) ); }