aboutsummaryrefslogtreecommitdiff
path: root/files/ru/learn/javascript/first_steps/variables
diff options
context:
space:
mode:
authorAlexey Pyltsyn <lex61rus@gmail.com>2021-03-23 21:32:09 +0300
committerGitHub <noreply@github.com>2021-03-23 21:32:09 +0300
commit9a96229818a3971444a77c238cc5ae45921db1bf (patch)
treeeb49956807321447f47ebdd01c4d71e1f46779cf /files/ru/learn/javascript/first_steps/variables
parenta4f49f9a14007bf65efdbe671d6383e8b233ac5b (diff)
downloadtranslated-content-9a96229818a3971444a77c238cc5ae45921db1bf.tar.gz
translated-content-9a96229818a3971444a77c238cc5ae45921db1bf.tar.bz2
translated-content-9a96229818a3971444a77c238cc5ae45921db1bf.zip
Fix capitalization of Russian pronouns (#294)
* Fix capitalization of Russian pronouns * Apply suggestions from code review Co-authored-by: Alexander Myshov <myshov@users.noreply.github.com> * Update files/ru/web/mathml/element/math/index.html Co-authored-by: Alexander Myshov <myshov@users.noreply.github.com> Co-authored-by: Alexander Myshov <myshov@users.noreply.github.com>
Diffstat (limited to 'files/ru/learn/javascript/first_steps/variables')
-rw-r--r--files/ru/learn/javascript/first_steps/variables/index.html4
1 files changed, 2 insertions, 2 deletions
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
<pre class="brush: js notranslate">const button = document.querySelector('button');
button.onclick = function() {
- let name = prompt('Как Вас зовут?');
- alert('Привет ' + name + ', рады видеть Вас!');
+ let name = prompt('Как вас зовут?');
+ alert('Привет ' + name + ', рады видеть вас!');
}</pre>
<p>{{ EmbedLiveSample('What_is_a_variable', '100%', 50, "", "", "hide-codepen-jsfiddle") }}</p>