From 9a96229818a3971444a77c238cc5ae45921db1bf Mon Sep 17 00:00:00 2001 From: Alexey Pyltsyn Date: Tue, 23 Mar 2021 21:32:09 +0300 Subject: Fix capitalization of Russian pronouns (#294) * Fix capitalization of Russian pronouns * Apply suggestions from code review Co-authored-by: Alexander Myshov * Update files/ru/web/mathml/element/math/index.html Co-authored-by: Alexander Myshov Co-authored-by: Alexander Myshov --- files/ru/learn/javascript/first_steps/variables/index.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'files/ru/learn/javascript/first_steps/variables/index.html') diff --git a/files/ru/learn/javascript/first_steps/variables/index.html b/files/ru/learn/javascript/first_steps/variables/index.html index cd0dad82d1..7c7b5e42ec 100644 --- a/files/ru/learn/javascript/first_steps/variables/index.html +++ b/files/ru/learn/javascript/first_steps/variables/index.html @@ -38,8 +38,8 @@ original_slug: Learn/JavaScript/Первые_шаги/Variables
const button = document.querySelector('button');
 
 button.onclick = function() {
-  let name = prompt('Как Вас зовут?');
-  alert('Привет ' + name + ', рады видеть Вас!');
+  let name = prompt('Как вас зовут?');
+  alert('Привет ' + name + ', рады видеть вас!');
 }

{{ EmbedLiveSample('What_is_a_variable', '100%', 50, "", "", "hide-codepen-jsfiddle") }}

-- cgit v1.2.3-54-g00ecf