Skip to content

Commit 5b06526

Browse files
committed
Fix with quotes
1 parent 07acc6d commit 5b06526

33 files changed

+857
-856
lines changed

baselines/audioworklet.generated.d.ts

Lines changed: 15 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -861,7 +861,7 @@ interface ReadableByteStreamController {
861861
*/
862862
readonly byobRequest: ReadableStreamBYOBRequest | null;
863863
/**
864-
* The **`desiredSize`** read-only property of the ReadableByteStreamController interface returns the number of bytes required to fill the stream's internal queue to its "desired size".
864+
* The **`desiredSize`** read-only property of the ReadableByteStreamController interface returns the number of bytes required to fill the stream's internal queue to its 'desired size'.
865865
*
866866
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/ReadableByteStreamController/desiredSize)
867867
*/
@@ -945,7 +945,7 @@ declare var ReadableStream: {
945945
};
946946

947947
/**
948-
* The **`ReadableStreamBYOBReader`** interface of the Streams API defines a reader for a ReadableStream that supports zero-copy reading from an underlying byte source. It is used for efficient copying from underlying sources where the data is delivered as an "anonymous" sequence of bytes, such as files.
948+
* The **`ReadableStreamBYOBReader`** interface of the Streams API defines a reader for a ReadableStream that supports zero-copy reading from an underlying byte source. It is used for efficient copying from underlying sources where the data is delivered as an 'anonymous' sequence of bytes, such as files.
949949
*
950950
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/ReadableStreamBYOBReader)
951951
*/
@@ -970,7 +970,7 @@ declare var ReadableStreamBYOBReader: {
970970
};
971971

972972
/**
973-
* The **`ReadableStreamBYOBRequest`** interface of the Streams API represents a "pull request" for data from an underlying source that will made as a zero-copy transfer to a consumer (bypassing the stream's internal queues).
973+
* The **`ReadableStreamBYOBRequest`** interface of the Streams API represents a 'pull request' for data from an underlying source that will made as a zero-copy transfer to a consumer (bypassing the stream's internal queues).
974974
*
975975
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/ReadableStreamBYOBRequest)
976976
*/
@@ -1242,19 +1242,19 @@ declare var TransformStreamDefaultController: {
12421242
*/
12431243
interface URL {
12441244
/**
1245-
* The **`hash`** property of the URL interface is a string containing a "#" followed by the fragment identifier of the URL. If the URL does not have a fragment identifier, this property contains an empty string, "".
1245+
* The **`hash`** property of the URL interface is a string containing a '#' followed by the fragment identifier of the URL. If the URL does not have a fragment identifier, this property contains an empty string, ''.
12461246
*
12471247
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/URL/hash)
12481248
*/
12491249
hash: string;
12501250
/**
1251-
* The **`host`** property of the URL interface is a string containing the host, which is the hostname, and then, if the port of the URL is nonempty, a ":", followed by the port of the URL. If the URL does not have a hostname, this property contains an empty string, "".
1251+
* The **`host`** property of the URL interface is a string containing the host, which is the hostname, and then, if the port of the URL is nonempty, a ':', followed by the port of the URL. If the URL does not have a hostname, this property contains an empty string, ''.
12521252
*
12531253
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/URL/host)
12541254
*/
12551255
host: string;
12561256
/**
1257-
* The **`hostname`** property of the URL interface is a string containing either the domain name or IP address of the URL. If the URL does not have a hostname, this property contains an empty string, "". IPv4 and IPv6 addresses are normalized, such as stripping leading zeros, and domain names are converted to IDN.
1257+
* The **`hostname`** property of the URL interface is a string containing either the domain name or IP address of the URL. If the URL does not have a hostname, this property contains an empty string, ''. IPv4 and IPv6 addresses are normalized, such as stripping leading zeros, and domain names are converted to IDN.
12581258
*
12591259
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/URL/hostname)
12601260
*/
@@ -1273,7 +1273,7 @@ interface URL {
12731273
*/
12741274
readonly origin: string;
12751275
/**
1276-
* The **`password`** property of the URL interface is a string containing the password component of the URL. If the URL does not have a password, this property contains an empty string, "".
1276+
* The **`password`** property of the URL interface is a string containing the password component of the URL. If the URL does not have a password, this property contains an empty string, ''.
12771277
*
12781278
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/URL/password)
12791279
*/
@@ -1285,19 +1285,19 @@ interface URL {
12851285
*/
12861286
pathname: string;
12871287
/**
1288-
* The **`port`** property of the URL interface is a string containing the port number of the URL. If the port is the default for the protocol (80 for ws: and http:, 443 for wss: and https:, and 21 for ftp:), this property contains an empty string, "".
1288+
* The **`port`** property of the URL interface is a string containing the port number of the URL. If the port is the default for the protocol (80 for ws: and http:, 443 for wss: and https:, and 21 for ftp:), this property contains an empty string, ''.
12891289
*
12901290
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/URL/port)
12911291
*/
12921292
port: string;
12931293
/**
1294-
* The **`protocol`** property of the URL interface is a string containing the protocol or scheme of the URL, including the final ":".
1294+
* The **`protocol`** property of the URL interface is a string containing the protocol or scheme of the URL, including the final ':'.
12951295
*
12961296
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/URL/protocol)
12971297
*/
12981298
protocol: string;
12991299
/**
1300-
* The **`search`** property of the URL interface is a search string, also called a query string, that is a string containing a "?" followed by the parameters of the URL. If the URL does not have a search query, this property contains an empty string, "".
1300+
* The **`search`** property of the URL interface is a search string, also called a query string, that is a string containing a '?' followed by the parameters of the URL. If the URL does not have a search query, this property contains an empty string, ''.
13011301
*
13021302
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/URL/search)
13031303
*/
@@ -1309,7 +1309,7 @@ interface URL {
13091309
*/
13101310
readonly searchParams: URLSearchParams;
13111311
/**
1312-
* The **`username`** property of the URL interface is a string containing the username component of the URL. If the URL does not have a username, this property contains an empty string, "".
1312+
* The **`username`** property of the URL interface is a string containing the username component of the URL. If the URL does not have a username, this property contains an empty string, ''.
13131313
*
13141314
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/URL/username)
13151315
*/
@@ -1780,7 +1780,7 @@ interface Console {
17801780
*/
17811781
countReset(label?: string): void;
17821782
/**
1783-
* The **`console.debug()`** static method outputs a message to the console at the "debug" log level. The message is only displayed to the user if the console is configured to display debug output. In most cases, the log level is configured within the console UI. This log level might correspond to the Debug or Verbose log level.
1783+
* The **`console.debug()`** static method outputs a message to the console at the 'debug' log level. The message is only displayed to the user if the console is configured to display debug output. In most cases, the log level is configured within the console UI. This log level might correspond to the Debug or Verbose log level.
17841784
*
17851785
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/console/debug_static)
17861786
*/
@@ -1798,7 +1798,7 @@ interface Console {
17981798
*/
17991799
dirxml(...data: any[]): void;
18001800
/**
1801-
* The **`console.error()`** static method outputs a message to the console at the "error" log level. The message is only displayed to the user if the console is configured to display error output. In most cases, the log level is configured within the console UI. The message may be formatted as an error, with red colors and call stack information.
1801+
* The **`console.error()`** static method outputs a message to the console at the 'error' log level. The message is only displayed to the user if the console is configured to display error output. In most cases, the log level is configured within the console UI. The message may be formatted as an error, with red colors and call stack information.
18021802
*
18031803
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/console/error_static)
18041804
*/
@@ -1822,7 +1822,7 @@ interface Console {
18221822
*/
18231823
groupEnd(): void;
18241824
/**
1825-
* The **`console.info()`** static method outputs a message to the console at the "info" log level. The message is only displayed to the user if the console is configured to display info output. In most cases, the log level is configured within the console UI. The message may receive special formatting, such as a small "i" icon next to it.
1825+
* The **`console.info()`** static method outputs a message to the console at the 'info' log level. The message is only displayed to the user if the console is configured to display info output. In most cases, the log level is configured within the console UI. The message may receive special formatting, such as a small 'i' icon next to it.
18261826
*
18271827
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/console/info_static)
18281828
*/
@@ -1865,7 +1865,7 @@ interface Console {
18651865
*/
18661866
trace(...data: any[]): void;
18671867
/**
1868-
* The **`console.warn()`** static method outputs a warning message to the console at the "warning" log level. The message is only displayed to the user if the console is configured to display warning output. In most cases, the log level is configured within the console UI. The message may receive special formatting, such as yellow colors and a warning icon.
1868+
* The **`console.warn()`** static method outputs a warning message to the console at the 'warning' log level. The message is only displayed to the user if the console is configured to display warning output. In most cases, the log level is configured within the console UI. The message may receive special formatting, such as yellow colors and a warning icon.
18691869
*
18701870
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/console/warn_static)
18711871
*/

0 commit comments

Comments
 (0)