Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion features/array-iterators.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name: Array iterators
description: Arrays are iterable with the `forof` statement and enumerable with the methods `entries()`, `keys()`, and `values()`.
description: Arrays are iterable with the `forof` statement and enumerable with the methods `entries()`, `keys()`, and `values()`.
spec:
- https://tc39.es/ecma262/multipage/indexed-collections.html#sec-array.prototype-@@iterator
- https://tc39.es/ecma262/multipage/indexed-collections.html#sec-array.prototype.entries
Expand Down
2 changes: 1 addition & 1 deletion features/async-iterable-streams.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name: Asynchronously iterable streams
description: Asynchronous iteration of a stream allows you to use `for await...of` loops to iterate through a stream's incoming data.
description: Asynchronous iteration of a stream allows you to use `for awaitof` loops to iterate through a stream's incoming data.
spec: https://streams.spec.whatwg.org/#rs-asynciterator
group: streams
compat_features:
Expand Down
2 changes: 1 addition & 1 deletion features/css-modules.yml
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
name: CSS import attributes
description: 'Module `import ... with { type: "css" } statements load CSS modules as constructable stylesheets. Also known as CSS module scripts and formerly known as import assertions.'
description: 'Module `import with { type: "css" } statements load CSS modules as constructable stylesheets. Also known as CSS module scripts and formerly known as import assertions.'
spec: https://html.spec.whatwg.org/multipage/webappapis.html#css-module-script
2 changes: 1 addition & 1 deletion features/json-modules.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name: JSON import attributes
description: 'Module `import ... with { type: "json" }` statements load JSON data. Also known as JSON module scripts and formerly known as import assertions.'
description: 'Module `import with { type: "json" }` statements load JSON data. Also known as JSON module scripts and formerly known as import assertions.'
spec: https://html.spec.whatwg.org/multipage/webappapis.html#json-module-script
group: json
compat_features:
Expand Down
2 changes: 1 addition & 1 deletion features/typed-array-iterators.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name: Typed array iterators
description: Typed arrays are iterable with the `forof` statement and enumerable with the methods `entries()`, `keys()`, and `values()`.
description: Typed arrays are iterable with the `forof` statement and enumerable with the methods `entries()`, `keys()`, and `values()`.
spec:
- https://tc39.es/ecma262/multipage/indexed-collections.html#sec-%25typedarray%25.prototype-@@iterator
- https://tc39.es/ecma262/multipage/indexed-collections.html#sec-%25typedarray%25.prototype.entries
Expand Down
2 changes: 1 addition & 1 deletion features/url-canparse.yml
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
name: URL.canParse()
description: The `URL.canParse()` static method checks whether a URL can be parsed into a valid `URL` object. It's an alternative to calling `new URL()` in a `trycatch` statement.
description: The `URL.canParse()` static method checks whether a URL can be parsed into a valid `URL` object. It's an alternative to calling `new URL()` in a `trycatch` statement.
spec: https://url.spec.whatwg.org/#dom-url-canparse