Skip to content

Commit

Permalink
Apply suggestions from code review
Browse files Browse the repository at this point in the history
Co-authored-by: Brian Thomas Smith <[email protected]>
  • Loading branch information
hamishwillee and bsmth authored Jun 9, 2023
1 parent f67e4d4 commit 390bf96
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions files/en-us/glossary/maplike_object/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ The objects may be read-only, or read-writable:
- A read-only `Map`-like object has the property [`size`](#size), and the methods: [`entries()`](#entries), [`forEach()`](#foreach), [`get()`](#get), [`has()`](#has), [`keys()`](#keys), [`values()`](#values), and [`@@iterator`](#iterator).
- An object that is also writeable will additionally have the methods: [`clear()`](#clear), [`delete()`](#delete), and [`set()`](#set).

<!-- distinquish from iterable and setlike -->
<!-- distinguish from iterable and setlike -->

## Instance properties

Expand Down Expand Up @@ -79,7 +79,7 @@ If the object is also read-only, it will be prefixed by the `readonly` keyword (

For example, the relevant part of the IDL definition for the readonly {{domxref("RTCStatsReport")}} looks like this:

```idl
```webidl
interface RTCStatsReport {
readonly maplike<DOMString, object>;
};
Expand Down
2 changes: 1 addition & 1 deletion files/en-us/glossary/setlike_object/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ If the object is also read-only, it will be prefixed by the `readonly` keyword (

For example, the relevant part of the IDL definition for the readonly {{domxref("GPUSupportedFeatures")}} looks like this:

```idl
```webidl
interface GPUSupportedFeatures {
readonly setlike<DOMString>;
};
Expand Down

0 comments on commit 390bf96

Please sign in to comment.