From 8df49e4e40badafb297c6d17d8fe7411a8a2526d Mon Sep 17 00:00:00 2001 From: KingofLegendary <44271999+KingofLegendary@users.noreply.github.com> Date: Fri, 23 Nov 2018 05:17:42 -0500 Subject: [PATCH] Fix the order wording(Second to first ) (#23254) Before modifying this, line 23 quote, "by default the first checkbox will come automatically" even though the checked attribute is in the second input element, not the first. --- guide/english/html/attributes/input-checked-attribute/index.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/guide/english/html/attributes/input-checked-attribute/index.md b/guide/english/html/attributes/input-checked-attribute/index.md index 1e3db55595..d6633749bc 100644 --- a/guide/english/html/attributes/input-checked-attribute/index.md +++ b/guide/english/html/attributes/input-checked-attribute/index.md @@ -20,4 +20,4 @@ The checked attribute can also be set after the page load, through JavaScript. ``` -In the example above when the web page is loaded by default the first checkbox will come automatically selected due to the checked attribute. +In the example above when the web page is loaded by default the second checkbox will come automatically selected due to the checked attribute.