From fe00ad778156e818bc02d2a5bc496acf977481e6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Alexander=20He=C3=9F?= <44900696+CreaTorAlexander@users.noreply.github.com> Date: Wed, 24 Feb 2021 15:41:31 +0100 Subject: [PATCH 1/3] Updated Typo Fixes #2658 --- .../document_and_website_structure/index.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/files/en-us/learn/html/introduction_to_html/document_and_website_structure/index.html b/files/en-us/learn/html/introduction_to_html/document_and_website_structure/index.html index 83271908e0c8f16..2474d17b01459c4 100644 --- a/files/en-us/learn/html/introduction_to_html/document_and_website_structure/index.html +++ b/files/en-us/learn/html/introduction_to_html/document_and_website_structure/index.html @@ -178,7 +178,7 @@

HTML layout elements in more detail
  • {{HTMLElement('footer')}} represents a group of end content for a page.
  • -

    Each of the aformentioned elements can be clicked on to read the corresponding article in the "HTML element reference" section, providing more detail about each one.

    +

    Each of the aforementioned elements can be clicked on to read the corresponding article in the "HTML element reference" section, providing more detail about each one.

    Non-semantic wrappers

    From 11cd7b595ee71a3db4d50432c154df558daf74c5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Alexander=20He=C3=9F?= <44900696+CreaTorAlexander@users.noreply.github.com> Date: Mon, 8 Mar 2021 20:22:21 +0100 Subject: [PATCH 2/3] Fixes #2946 Put the comma at the right place --- files/en-us/web/api/window/getcomputedstyle/index.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/files/en-us/web/api/window/getcomputedstyle/index.html b/files/en-us/web/api/window/getcomputedstyle/index.html index 11381bcb1151c42..6cc4031d0729db8 100644 --- a/files/en-us/web/api/window/getcomputedstyle/index.html +++ b/files/en-us/web/api/window/getcomputedstyle/index.html @@ -21,7 +21,7 @@

    Syntax

    var style = window.getComputedStyle(element [, pseudoElt]);
    + class="brush: js">var style = window.getComputedStyle(element, [pseudoElt]);
    element
    From 9d08f101e457ea034ff79c1c5726661e7857c06d Mon Sep 17 00:00:00 2001 From: Hamish Willee Date: Tue, 9 Mar 2021 08:42:12 +1100 Subject: [PATCH 3/3] Reformat to current syntax standard --- files/en-us/web/api/window/getcomputedstyle/index.html | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/files/en-us/web/api/window/getcomputedstyle/index.html b/files/en-us/web/api/window/getcomputedstyle/index.html index 6cc4031d0729db8..ad659d6fa8ec3ff 100644 --- a/files/en-us/web/api/window/getcomputedstyle/index.html +++ b/files/en-us/web/api/window/getcomputedstyle/index.html @@ -20,8 +20,9 @@

    Syntax

    -
    var style = window.getComputedStyle(element, [pseudoElt]);
    +
    window.getComputedStyle(element);
    +window.getComputedStyle(element, pseudoElt);
    +
    element