Skip to content

Commit 6b34a7e

Browse files
author
Himanshu
authored
Fixes mdn#5614 removes bytestring (mdn#8740)
1 parent 74f39b2 commit 6b34a7e

File tree

16 files changed

+16
-56
lines changed

16 files changed

+16
-56
lines changed

files/en-us/_redirects.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6996,6 +6996,7 @@
69966996
/en-US/docs/Web/API/ByteLengthQueueingStrategy/ByteLengthQueueingStrategy /en-US/docs/Web/API/ByteLengthQueuingStrategy/ByteLengthQueuingStrategy
69976997
/en-US/docs/Web/API/ByteLengthQueueingStrategy/size /en-US/docs/Web/API/ByteLengthQueuingStrategy/size
69986998
/en-US/docs/Web/API/ByteLengthQueuingStrategy/ByteLengthQueueingStrategy /en-US/docs/Web/API/ByteLengthQueuingStrategy/ByteLengthQueuingStrategy
6999+
/en-US/docs/Web/API/ByteString /en-US/docs/Web/JavaScript/Reference/Global_Objects/String
69997000
/en-US/docs/Web/API/CSS.escape /en-US/docs/Web/API/CSS/escape
70007001
/en-US/docs/Web/API/CSS.supports /en-US/docs/Web/API/CSS/supports
70017002
/en-US/docs/Web/API/CSSFontLoading_API /en-US/docs/Web/API/CSS_Font_Loading_API

files/en-us/web/api/bytestring/index.html

Lines changed: 0 additions & 41 deletions
This file was deleted.

files/en-us/web/api/fetch/index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ <h3 id="Parameters">Parameters</h3>
7171
(This behavior was corrected in Firefox 65 — see {{bug(1508661)}}).</dd>
7272
<dt><code>headers</code></dt>
7373
<dd>Any headers you want to add to your request, contained within a
74-
{{domxref("Headers")}} object or an object literal with {{domxref("ByteString")}}
74+
{{domxref("Headers")}} object or an object literal with {{jsxref("String")}}
7575
values. Note that <a href="/en-US/docs/Glossary/Forbidden_header_name">some names
7676
are forbidden</a>.</dd>
7777
<dt><code>body</code></dt>

files/en-us/web/api/gamepad/id/index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ <h2 id="Example">Example</h2>
4343

4444
<h2 id="Value">Value</h2>
4545

46-
<p>A {{domxref("string")}}.</p>
46+
<p>A {{jsxref("String")}}.</p>
4747

4848
<h2 id="Specifications">Specifications</h2>
4949

files/en-us/web/api/headers/entries/index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
<p>The <code><strong>Headers.entries()</strong></code> method returns an
1616
{{jsxref("Iteration_protocols",'iterator')}} allowing to go through all key/value pairs
1717
contained in this object. The both the key and value of each pairs are
18-
{{domxref("ByteString")}} objects.</p>
18+
{{jsxref("String")}} objects.</p>
1919

2020
<div class="note">
2121
<p><strong>Note:</strong> This method is available in <a

files/en-us/web/api/headers/get/index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ <h3 id="Parameters">Parameters</h3>
3838

3939
<h3 id="Returns">Returns</h3>
4040

41-
<p>A {{domxref("ByteString")}} sequence representing the values of the retrieved header or
41+
<p>A {{jsxref("String")}} sequence representing the values of the retrieved header or
4242
<code>null</code> if this header is not set.</p>
4343

4444
<h2 id="Example">Example</h2>

files/en-us/web/api/headers/headers/index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ <h3 id="Parameters">Parameters</h3>
2525
<dt><code>init</code> {{optional_inline}}</dt>
2626
<dd>An object containing any <a href="/en-US/docs/Web/HTTP/Headers">HTTP headers</a>
2727
that you want to pre-populate your <code>Headers</code> object with. This can be a
28-
simple object literal with {{domxref("ByteString")}} values; or an existing
28+
simple object literal with {{jsxref("String")}} values; or an existing
2929
<code>Headers</code> object. In the last case, the new <code>Headers</code> object
3030
copies its data from the existing <code>Headers</code> object.</dd>
3131
</dl>

files/en-us/web/api/headers/index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ <h2 id="Methods">Methods</h2>
4848
<dt>{{domxref("Headers.forEach()")}}</dt>
4949
<dd>Executes a provided function once for each array element.</dd>
5050
<dt>{{domxref("Headers.get()")}}</dt>
51-
<dd>Returns a {{domxref("ByteString")}} sequence of all the values of a header within a <code>Headers</code> object with a given name.</dd>
51+
<dd>Returns a {{jsxref("String")}} sequence of all the values of a header within a <code>Headers</code> object with a given name.</dd>
5252
<dt>{{domxref("Headers.has()")}}</dt>
5353
<dd>Returns a boolean stating whether a <code>Headers</code> object contains a certain header.</dd>
5454
<dt>{{domxref("Headers.keys()")}}</dt>

files/en-us/web/api/headers/keys/index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414

1515
<p>The <code><strong>Headers.keys()</strong></code> method returns an
1616
{{jsxref("Iteration_protocols",'iterator')}} allowing to go through all keys contained
17-
in this object. The keys are {{domxref("ByteString")}} objects.</p>
17+
in this object. The keys are {{jsxref("String")}} objects.</p>
1818

1919
<div class="note">
2020
<p><strong>Note:</strong> This method is available in <a

files/en-us/web/api/headers/values/index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414

1515
<p>The <code><strong>Headers.values()</strong></code> method returns an
1616
{{jsxref("Iteration_protocols",'iterator')}} allowing to go through all values contained
17-
in this object. The values are {{domxref("ByteString")}} objects.</p>
17+
in this object. The values are {{jsxref("String")}} objects.</p>
1818

1919
<div class="note">
2020
<p><strong>Note:</strong> This method is available in <a

0 commit comments

Comments
 (0)