Skip to content

Commit 0009f18

Browse files
authored
Fixes an http link in domstring (#4610)
1 parent ef2ccc8 commit 0009f18

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
---
1010
<div>{{APIRef("DOM")}}</div>
1111

12-
<p><strong><code>DOMString</code></strong> is a sequence of 16-bit unsigned integers, typically interpreted as UTF-16 <a href="http://www.unicode.org/glossary/#code_unit">code units</a>. This corresponds exactly to the JavaScript <a href="https://tc39.es/ecma262/#sec-ecmascript-language-types-string-type">primitive String type</a>. When a <code>DOMString</code> is provided to JavaScript, it maps directly to the corresponding {{jsxref("String")}}.</p>
12+
<p><strong><code>DOMString</code></strong> is a sequence of 16-bit unsigned integers, typically interpreted as UTF-16 <a href="https://www.unicode.org/glossary/#code_unit">code units</a>. This corresponds exactly to the JavaScript <a href="https://tc39.es/ecma262/#sec-ecmascript-language-types-string-type">primitive String type</a>. When a <code>DOMString</code> is provided to JavaScript, it maps directly to the corresponding {{jsxref("String")}}.</p>
1313

1414
<p>When a Web API accepts a <code>DOMString</code>, the value provided will be stringified, using the <code><a href="https://tc39.es/ecma262/#sec-tostring">ToString</a></code> abstract operation. (For types other than Symbol, this has the same behavior as the {{jsxref("String/String", "String()")}} function.)</p>
1515

0 commit comments

Comments
 (0)