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

Editorial: fix typo DigitalCredentialsRequest -> DigitalCredentialRequest #196

Merged
merged 1 commit into from
Jan 8, 2025
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
14 changes: 7 additions & 7 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -188,7 +188,7 @@ <h2>
</h2>
<pre class="idl">
dictionary DigitalCredentialRequestOptions {
sequence&lt;DigitalCredentialsRequest&gt; requests;
sequence&lt;DigitalCredentialRequest&gt; requests;
};
</pre>
<h3>
Expand All @@ -201,17 +201,17 @@ <h3>
holder's software, such as a digital wallet.
</p>
<h2>
The `DigitalCredentialsRequest` dictionary
The `DigitalCredentialRequest` dictionary
</h2>
<p>
The {{DigitalCredentialsRequest}} dictionary represents a [=digital
The {{DigitalCredentialRequest}} dictionary represents a [=digital
credential/presentation request=]. It is used to specify an [=digital
credential/exchange protocol=] and a [=digital credential/request data=],
which the user agent MAY match against software used by a holder, such as
a digital wallet.
</p>
<pre class="idl">
dictionary DigitalCredentialsRequest {
dictionary DigitalCredentialRequest {
required DOMString protocol;
required object data;
};
Expand All @@ -220,20 +220,20 @@ <h3>
The `protocol` member
</h3>
<p>
The <dfn data-dfn-for="DigitalCredentialsRequest">protocol</dfn> member
The <dfn data-dfn-for="DigitalCredentialRequest">protocol</dfn> member
denotes the [=digital credential/exchange protocol=] when requesting an
identify credential.
</p>
<p>
The {{DigitalCredentialsRequest/protocol}} member's value is be one of
The {{DigitalCredentialRequest/protocol}} member's value is be one of
the well-defined keys defined in [[[#protocol-registry]]] or any other
custom one.
</p>
<h3>
The `data` member
</h3>
<p>
The <dfn data-dfn-for="DigitalCredentialsRequest">data</dfn> member is
The <dfn data-dfn-for="DigitalCredentialRequest">data</dfn> member is
the [=digital credential/request data=] to be handled by the holder's
software, such as a digital wallet.
</p>
Expand Down