Merge pull request #3206 from ann-kilzer/patch-1

Fix typo "stirng" to "string"
This commit is contained in:
Ilya Kantor 2022-09-30 23:08:48 +02:00 committed by GitHub
commit 4d42242874
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -516,7 +516,7 @@ As we already mentioned, JavaScript strings are based on [Unicode](https://en.wi
Each character is represented by a byte sequence of 1-4 bytes.
JavaScript allows us to specify a character not only by directly including it into a stirng, but also by its hexadecimal Unicode code using these three notations:
JavaScript allows us to specify a character not only by directly including it into a string, but also by its hexadecimal Unicode code using these three notations:
- `\xXX` -- a character whose Unicode code point is `U+00XX`.