From b4410c13e02aacd29d7339c1efa1cf07c99fa420 Mon Sep 17 00:00:00 2001 From: Estelle Weyl Date: Thu, 21 Jul 2022 11:58:42 -0700 Subject: [PATCH] MINOR: remove i and b --- files/en-us/web/api/attr/localname/index.md | 2 +- files/en-us/web/api/attr/name/index.md | 2 +- files/en-us/web/api/attr/namespaceuri/index.md | 2 +- files/en-us/web/api/attr/ownerelement/index.md | 2 +- files/en-us/web/api/attr/prefix/index.md | 2 +- files/en-us/web/api/attr/value/index.md | 2 +- files/en-us/web/api/blob/blob/index.md | 2 +- .../web/api/document/activeelement/index.md | 4 ++-- .../formdata/using_formdata_objects/index.md | 2 +- .../guide/parsing_and_serializing_xml/index.md | 2 +- files/en-us/web/html/element/slot/index.md | 2 +- .../index.md | 18 +++++++++--------- .../using_templates_and_slots/index.md | 2 +- 13 files changed, 22 insertions(+), 22 deletions(-) diff --git a/files/en-us/web/api/attr/localname/index.md b/files/en-us/web/api/attr/localname/index.md index 4998b3b94c1b5fb..f20c352486ee38f 100644 --- a/files/en-us/web/api/attr/localname/index.md +++ b/files/en-us/web/api/attr/localname/index.md @@ -35,7 +35,7 @@ The following example displays the local name of the first attribute of the two

-Local part of the attribute xml:lang: None. +Local part of the attribute xml:lang: None. ``` ### JavaScript Content diff --git a/files/en-us/web/api/attr/name/index.md b/files/en-us/web/api/attr/name/index.md index bf83d9efdb76f5d..f3ef5b3a8530439 100644 --- a/files/en-us/web/api/attr/name/index.md +++ b/files/en-us/web/api/attr/name/index.md @@ -31,7 +31,7 @@ The following example displays the qualified name of the first attribute of the

-Qualified name of the attribute xml:lang: None. +Qualified name of the attribute xml:lang: None. ``` ### JavaScript Content diff --git a/files/en-us/web/api/attr/namespaceuri/index.md b/files/en-us/web/api/attr/namespaceuri/index.md index 94364258beda26f..96b380da0652d81 100644 --- a/files/en-us/web/api/attr/namespaceuri/index.md +++ b/files/en-us/web/api/attr/namespaceuri/index.md @@ -42,7 +42,7 @@ In the case of the SVG element, it will return the URI of the XML namespace, `ht

-URI of the attribute xml:lang namespace: None. +URI of the attribute xml:lang namespace: None. ``` ### JavaScript Content diff --git a/files/en-us/web/api/attr/ownerelement/index.md b/files/en-us/web/api/attr/ownerelement/index.md index 95f64063b9ab014..d5403279dfab20e 100644 --- a/files/en-us/web/api/attr/ownerelement/index.md +++ b/files/en-us/web/api/attr/ownerelement/index.md @@ -29,7 +29,7 @@ The following example displays the qualified name of the element of the two firs

-Qualified name of the owner element of the attribute xml:lang: None. +Qualified name of the owner element of the attribute xml:lang: None. ``` ### JavaScript Content diff --git a/files/en-us/web/api/attr/prefix/index.md b/files/en-us/web/api/attr/prefix/index.md index 2c3c381303b85d5..0e1865ecc95dd9d 100644 --- a/files/en-us/web/api/attr/prefix/index.md +++ b/files/en-us/web/api/attr/prefix/index.md @@ -33,7 +33,7 @@ A string containing the prefix of the namespace the attribute belongs too. If no

-Prefix of the attribute xml:lang: None. +Prefix of the attribute xml:lang: None. ``` ### JavaScript Content diff --git a/files/en-us/web/api/attr/value/index.md b/files/en-us/web/api/attr/value/index.md index 058fc0919214ed8..98ed4510fd795c4 100644 --- a/files/en-us/web/api/attr/value/index.md +++ b/files/en-us/web/api/attr/value/index.md @@ -26,7 +26,7 @@ The following example displays the current value of the attribute `test`. Clicki

-Current value of the test attribute: None. +Current value of the test attribute: None. ``` ### JavaScript Content diff --git a/files/en-us/web/api/blob/blob/index.md b/files/en-us/web/api/blob/blob/index.md index 4ea7adf6d5964cb..b8c9cdb3da3d608 100644 --- a/files/en-us/web/api/blob/blob/index.md +++ b/files/en-us/web/api/blob/blob/index.md @@ -50,7 +50,7 @@ A new {{domxref("Blob")}} object containing the specified data. ## Examples ```js -const array = ['hey!']; // an array consisting of a single string +const array = ['hey!']; // an array consisting of a single string const blob = new Blob(array, {type : 'text/html'}); // the blob ``` diff --git a/files/en-us/web/api/document/activeelement/index.md b/files/en-us/web/api/document/activeelement/index.md index e5d950b724875ad..dee7e1e1ca8f03c 100644 --- a/files/en-us/web/api/document/activeelement/index.md +++ b/files/en-us/web/api/document/activeelement/index.md @@ -51,8 +51,8 @@ The {{domxref('Element')}} which currently has focus, {{HTMLElement("body")}} or -

Active element ID:

-

Selected text:

+

Active element ID:

+

Selected text:

``` ### JavaScript diff --git a/files/en-us/web/api/formdata/using_formdata_objects/index.md b/files/en-us/web/api/formdata/using_formdata_objects/index.md index 623ac89f6e374bf..a7e5fc090971242 100644 --- a/files/en-us/web/api/formdata/using_formdata_objects/index.md +++ b/files/en-us/web/api/formdata/using_formdata_objects/index.md @@ -29,7 +29,7 @@ formData.append("accountnum", 123456); // number 123456 is immediately converted formData.append("userfile", fileInputElement.files[0]); // JavaScript file-like object -const content = 'hey!'; // the body of the new file… +const content = 'hey!'; // the body of the new file… const blob = new Blob([content], { type: "text/xml"}); formData.append("webmasterfile", blob); diff --git a/files/en-us/web/guide/parsing_and_serializing_xml/index.md b/files/en-us/web/guide/parsing_and_serializing_xml/index.md index 4889eea2624cf58..a23eca1940cd614 100644 --- a/files/en-us/web/guide/parsing_and_serializing_xml/index.md +++ b/files/en-us/web/guide/parsing_and_serializing_xml/index.md @@ -39,7 +39,7 @@ Using one of the following approaches to create an XML document (which is an ins This example converts an XML fragment in a string into a DOM tree using a {{domxref("DOMParser")}}: ```js -const xmlStr = 'hey!'; +const xmlStr = 'hey!'; const parser = new DOMParser(); const doc = parser.parseFromString(xmlStr, "application/xml"); // print the name of the root element or error message diff --git a/files/en-us/web/html/element/slot/index.md b/files/en-us/web/html/element/slot/index.md index 75241d89de016e2..222bd006050f2d5 100644 --- a/files/en-us/web/html/element/slot/index.md +++ b/files/en-us/web/html/element/slot/index.md @@ -109,7 +109,7 @@ This element includes the [global attributes](/en-US/docs/Web/HTML/Global_attrib
<NEED NAME> - NEED DESCRIPTION + NEED DESCRIPTION

Attributes

diff --git a/files/en-us/web/svg/applying_svg_effects_to_html_content/index.md b/files/en-us/web/svg/applying_svg_effects_to_html_content/index.md index 068a555902b39b2..67c77072383b69c 100644 --- a/files/en-us/web/svg/applying_svg_effects_to_html_content/index.md +++ b/files/en-us/web/svg/applying_svg_effects_to_html_content/index.md @@ -53,7 +53,7 @@ p { Note that in the CSS, the mask is specified using a URL to the ID `#mask-1`, which is the ID of the SVG mask specified below it. Everything else specifies details about the gradient mask itself. -Applying the SVG effect to (X)HTML is accomplished by assigning the `target` class defined above to an element, like this: +Applying the SVG effect to HTML is accomplished by assigning the `target` class defined above to an element, like this: ```html

@@ -62,8 +62,8 @@ Applying the SVG effect to (X)HTML is accomplished by assigning the `target` cla

Lorem ipsum dolor sit amet, consectetur adipisicing - elit, sed do eiusmod tempor incididunt - ut labore et dolore magna aliqua. + elit, sed do eiusmod tempor incididunt + ut labore et dolore magna aliqua. Ut enim ad minim veniam.

``` @@ -83,8 +83,8 @@ This example demonstrates using SVG to clip HTML content. Notice that even the c

Lorem ipsum dolor sit amet, consectetur adipisicing - elit, sed do eiusmod tempor incididunt - ut labore et dolore magna aliqua. + elit, sed do eiusmod tempor incididunt + ut labore et dolore magna aliqua. Ut enim ad minim veniam.

@@ -134,8 +134,8 @@ This demonstrates applying a filter to HTML content using SVG. It establishes se
lorem

Lorem ipsum dolor sit amet, consectetur adipisicing - elit, sed do eiusmod tempor incididunt - ut labore et dolore magna aliqua. + elit, sed do eiusmod tempor incididunt + ut labore et dolore magna aliqua. Ut enim ad minim veniam.

``` @@ -191,8 +191,8 @@ The five filters are applied using the following CSS: ```css p.target { filter:url(#f3); } p.target:hover { filter:url(#f5); } -b.target { filter:url(#f1); } -b.target:hover { filter:url(#f4); } +em.target { filter:url(#f1); } +em.target:hover { filter:url(#f4); } pre.target { filter:url(#f2); } pre.target:hover { filter:url(#f3); } ``` diff --git a/files/en-us/web/web_components/using_templates_and_slots/index.md b/files/en-us/web/web_components/using_templates_and_slots/index.md index 7a4fbc4b3607b8a..1c043ca9b934542 100644 --- a/files/en-us/web/web_components/using_templates_and_slots/index.md +++ b/files/en-us/web/web_components/using_templates_and_slots/index.md @@ -163,7 +163,7 @@ First of all, we use the {{HTMLElement("slot")}} element within a {{HTMLElement( <NEED NAME> - NEED DESCRIPTION + NEED DESCRIPTION