Skip to content

Commit c1c5c73

Browse files
authored
Merge pull request #1748 from GeorgySerga/patch-6
Fix translation
2 parents 20351cb + 2bc6d87 commit c1c5c73

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

1-js/04-object-basics/01-object/article.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -103,7 +103,7 @@ user.likes birds = true
103103

104104
JavaScript doesn't understand that. It thinks that we address `user.likes`, and then gives a syntax error when comes across unexpected `birds`.
105105

106-
The dot requires the key to be a valid variable identifier. That implies: contains no spaces, doesn't start with a digit and doesn't include special characters (`$` и `_` are allowed).
106+
The dot requires the key to be a valid variable identifier. That implies: contains no spaces, doesn't start with a digit and doesn't include special characters (`$` and `_` are allowed).
107107

108108
There's an alternative "square bracket notation" that works with any string:
109109

0 commit comments

Comments
 (0)