Correct comment in 1.13.1

Strictly speaking, there is no error here,
as `typeof` does not produce errors with undefined variables.
This commit is contained in:
Vse Mozhe Buty 2020-11-01 22:54:30 +02:00 committed by GitHub
parent dccca58f26
commit 4e9a33542f
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -260,7 +260,7 @@ Compare to regular script below:
<script>
*!*
alert(typeof button); // Error: button is undefined, the script can't see elements below
alert(typeof button); // button is undefined, the script can't see elements below
*/!*
// regular scripts run immediately, before the rest of the page is processed
</script>