Merge pull request #2013 from leviding/patch-19

Fix minor typo error: add ol number
This commit is contained in:
Ilya Kantor 2020-07-18 14:06:32 +03:00 committed by GitHub
commit 55f825c3af
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -61,7 +61,7 @@ let div = document.createElement('div');
// 2. Set its class to "alert"
div.className = "alert";
// Fill it with the content
// 3. Fill it with the content
div.innerHTML = "<strong>Hi there!</strong> You've read an important message.";
```