Skip to content

Commit 2bd3acb

Browse files
committed
s/excludeList/redactList
1 parent ce14a68 commit 2bd3acb

File tree

1 file changed

+17
-17
lines changed

1 file changed

+17
-17
lines changed

index.html

Lines changed: 17 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -2535,14 +2535,14 @@ <h2>
25352535
<p>
25362536
The steps to <dfn>create a <code>PaymentAddress</code> from
25372537
user-provided input</dfn> are given by the following algorithm. The
2538-
algorithm takes a <a>list</a> <var>excludeList</var>, for which user
2538+
algorithm takes a <a>list</a> <var>redactList</var>, for which user
25392539
input will not be gathered.
25402540
</p>
25412541
<ol data-link-for="AddressInit">
25422542
<li>Let <var>details</var> be an object with no members that will
25432543
serve as a <a>AddressInit</a> dictionary.
25442544
</li>
2545-
<li>If "addressLine" is not in <var>excludeList</var>, set
2545+
<li>If "addressLine" is not in <var>redactList</var>, set
25462546
<var>details</var>["<a>addressLine</a>"] to the result of splitting
25472547
the user-provided address line into a <a data-cite=
25482548
"!WEBIDL#dfn-frozen-array-type">frozen array</a>. If none was
@@ -2552,12 +2552,12 @@ <h2>
25522552
scope of this specification.
25532553
</aside>
25542554
</li>
2555-
<li>If "country" is not in <var>excludeList</var>, set
2555+
<li>If "country" is not in <var>redactList</var>, set
25562556
<var>details</var>["<a>country</a>"] to the user-provided country as
25572557
an upper case [[!ISO3166-1]] alpha-2 code, or to the empty string if
25582558
none was provided.
25592559
</li>
2560-
<li>If "phone" is not in <var>excludeList</var>, set
2560+
<li>If "phone" is not in <var>redactList</var>, set
25612561
<var>details</var>["<a>phone</a>"] to the user-provided phone number,
25622562
or to the empty string if none was provided.
25632563
<aside class="note" title="Privacy of phone number">
@@ -2570,25 +2570,25 @@ <h2>
25702570
</p>
25712571
</aside>
25722572
</li>
2573-
<li>If "languageCode" is not in <var>excludeList</var>, set
2573+
<li>If "languageCode" is not in <var>redactList</var>, set
25742574
<var>details</var>["<a>languageCode</a>"] to a <a data-cite=
25752575
"!BCP47#section-4.5">canonicalized language tag</a>, or to the empty
25762576
string if none was provided.
25772577
<div class="issue" data-number="608"></div>
25782578
</li>
2579-
<li>If "city" is not in <var>excludeList</var>, set
2579+
<li>If "city" is not in <var>redactList</var>, set
25802580
<var>details</var>["<a>city</a>"] to the user-provided city, or to
25812581
the empty string if none was provided.
25822582
</li>
2583-
<li>If "dependentLocality" is not in <var>excludeList</var>, set
2584-
<var>details</var>["<a>dependentLocality</a>"] to the user-provided
2585-
dependent locality, or to the empty string if none was provided.
2583+
<li>If "dependentLocality" is not in <var>redactList</var>, set <var>
2584+
details</var>["<a>dependentLocality</a>"] to the user-provided
2585+
dependent locality, or to the empty string if none was provided.
25862586
</li>
2587-
<li>If "organization" is not in <var>excludeList</var>, set
2587+
<li>If "organization" is not in <var>redactList</var>, set
25882588
<var>details</var>["<a>organization</a>"] to the user-provided
25892589
recipient organization, or to the empty string if none was provided.
25902590
</li>
2591-
<li>If "postalCode" is not in <var>excludeList</var>, set
2591+
<li>If "postalCode" is not in <var>redactList</var>, set
25922592
<var>details</var>["<a>postalCode</a>"] to the user-provided postal
25932593
code, or to the empty string if none was provided. Optionally, redact
25942594
part of <var>details</var>["<a>postalCode</a>"].
@@ -2605,18 +2605,18 @@ <h2>
26052605
</p>
26062606
</div>
26072607
</li>
2608-
<li>If "recipient" is not in <var>excludeList</var>, set
2608+
<li>If "recipient" is not in <var>redactList</var>, set
26092609
<var>details</var>["<a>recipient</a>"] to the user-provided recipient
26102610
of the transaction, or to the empty string if none was provided.
26112611
</li>
2612-
<li>If "region" is not in <var>excludeList</var>:
2612+
<li>If "region" is not in <var>redactList</var>:
26132613
<ol>
26142614
<li>Set <var>details</var>["<a>region</a>"] to the user-provided
26152615
region, or to the empty string if none was provided.
26162616
</li>
26172617
</ol>
26182618
</li>
2619-
<li>If "sortingCode" is not in <var>excludeList</var>, set
2619+
<li>If "sortingCode" is not in <var>redactList</var>, set
26202620
<var>details</var>["<a>sortingCode</a>"] to the user-provided sorting
26212621
code, or to the empty string if none was provided.
26222622
</li>
@@ -3214,8 +3214,8 @@ <h2>
32143214
<a>Queue a task</a> on the <a>user interaction task source</a> to
32153215
run the following steps:
32163216
<ol>
3217-
<li>Let <var>excludeList</var> be the empty list. Optionally,
3218-
append the following items to <var>excludeList</var>: «
3217+
<li>Let <var>redactList</var> be the empty list. Optionally,
3218+
append the following items to <var>redactList</var>: «
32193219
"organization", "phone", "recipient", "addressLine" ».
32203220
</li>
32213221
<li>Let <var>address</var> be the result of running the steps to
@@ -3359,7 +3359,7 @@ <h2>
33593359
"PaymentOptions.requestShipping">requestShipping</a> value of
33603360
<var>request</var>.<a>[[\options]]</a> is true, then <a>create a
33613361
<code>PaymentAddress</code> from user-provided input</a> passing the
3362-
empty list as the <var>excludeList</var> and set the <a data-lt=
3362+
empty list as the <var>redactList</var> and set the <a data-lt=
33633363
"PaymentResponse.shippingAddress">shippingAddress</a> attribute of
33643364
<var>response</var> to the resulting <a>PaymentAddress</a>.
33653365
Otherwise, set it to null.

0 commit comments

Comments
 (0)