Skip to content

Commit fde8c3c

Browse files
lex111dandgerson
andauthored
Update 1-js/02-first-steps/14-function-basics/article.md
Co-Authored-By: dandgerson <dandgerson@gmail.com>
1 parent 0e865a2 commit fde8c3c

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

1-js/02-first-steps/14-function-basics/article.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -138,7 +138,7 @@ alert( userName ); // *!*John*/!*, не изменилась, у функции
138138
В примере ниже функции передаются два параметра: `from` и `text`.
139139

140140
```js run
141-
function showMessage(*!*from, text*/!*) { // агрументы: from, text
141+
function showMessage(*!*from, text*/!*) { // аргументы: from, text
142142
alert(from + ': ' + text);
143143
}
144144

0 commit comments

Comments
 (0)