Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix property descriptions in the quick reference #194

Merged
merged 1 commit into from
Nov 6, 2023
Merged
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
12 changes: 6 additions & 6 deletions mdn-drafts/QUICK-REFERENCE.md
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ start of a `:blank` named group pattern.

**`URLPattern.protocol`**

Returns the URL protocol pattern passed to the constructor. This value may
Returns the URL scheme pattern passed to the constructor. This value may
be differ from the input to the constructor due to normalization.

**`URLPattern.username`**
Expand All @@ -57,27 +57,27 @@ be differ from the input to the constructor due to normalization.

**`URLPattern.hostname`**

Returns the URL username pattern set during construction. This value may
Returns the URL hostname pattern set during construction. This value may
be differ from the input to the constructor due to normalization.

**`URLPattern.port`**

Returns the URL username pattern set during construction. This value may
Returns the URL port pattern set during construction. This value may
be differ from the input to the constructor due to normalization.

**`URLPattern.pathname`**

Returns the URL username pattern set during construction. This value may
Returns the URL path pattern set during construction. This value may
be differ from the input to the constructor due to normalization.

**`URLPattern.search`**

Returns the URL username pattern set during construction. This value may
Returns the URL query pattern set during construction. This value may
be differ from the input to the constructor due to normalization.

**`URLPattern.hash`**

Returns the URL username pattern set during construction. This value may
Returns the URL hash pattern set during construction. This value may
be differ from the input to the constructor due to normalization.

## Events
Expand Down
Loading