Fix minor typo error: add ol number

This commit is contained in:
LeviDing 2020-07-18 13:17:18 +08:00 committed by GitHub
parent 72482bc435
commit 7480a24c25
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.";
```