Skip to content

Commit 86cb15d

Browse files
Editorial: Fix some incorrect capitalization, and make sections less shouty (#320)
Non-normative. Fix a couple incorrect capitalization instances Make section titles consistently "Sentence case" instead of "Title Case"
1 parent d3e301d commit 86cb15d

File tree

1 file changed

+23
-23
lines changed

1 file changed

+23
-23
lines changed

index.bs

Lines changed: 23 additions & 23 deletions
Original file line numberDiff line numberDiff line change
@@ -433,7 +433,7 @@ which is either null or an [=/upgrade transaction=], and is initially null.
433433
</div>
434434

435435
<!-- ============================================================ -->
436-
### Database Connection ### {#database-connection}
436+
### Database connection ### {#database-connection}
437437
<!-- ============================================================ -->
438438

439439
Script does not interact with [=databases=] directly. Instead,
@@ -501,7 +501,7 @@ to allow the upgrade or delete to proceed.
501501

502502

503503
<!-- ============================================================ -->
504-
## Object Store ## {#object-store-construct}
504+
## Object store ## {#object-store-construct}
505505
<!-- ============================================================ -->
506506

507507
An <dfn>object store</dfn> is the primary storage mechanism for
@@ -544,7 +544,7 @@ one of three sources:
544544
</div>
545545

546546
<!-- ============================================================ -->
547-
### Object Store Handle ### {#object-store-handle-construct}
547+
### Object store handle ### {#object-store-handle-construct}
548548
<!-- ============================================================ -->
549549

550550
Script does not interact with [=/object stores=] directly. Instead,
@@ -737,7 +737,7 @@ of running [=compare two keys=] with |a| and |b| is 0.
737737

738738

739739
<!-- ============================================================ -->
740-
## Key Path ## {#key-path-construct}
740+
## Key path ## {#key-path-construct}
741741
<!-- ============================================================ -->
742742

743743
A <dfn>key path</dfn> is a string or list of strings
@@ -857,7 +857,7 @@ one [=object-store/record=] is added to the index for each of the [=subkeys=].
857857
</div>
858858

859859
<!-- ============================================================ -->
860-
### Index Handle ### {#index-handle-construct}
860+
### Index handle ### {#index-handle-construct}
861861
<!-- ============================================================ -->
862862

863863
Script does not interact with [=/indexes=] directly. Instead, within
@@ -885,7 +885,7 @@ an [=/upgrade transaction=] is running.
885885
## Transactions ## {#transaction-construct}
886886
<!-- ============================================================ -->
887887

888-
A <dfn id=transaction-concept>Transaction</dfn> is used to interact
888+
A <dfn id=transaction-concept>transaction</dfn> is used to interact
889889
with the data in a [=database=]. Whenever data is read or written
890890
to the database it is done by using a [=/transaction=].
891891

@@ -973,7 +973,7 @@ A <dfn>read/write transaction</dfn>
973973
is a [=/transaction=] with [=transaction/mode=] {{"readwrite"}}.
974974

975975
<!-- ============================================================ -->
976-
### Transaction Lifecycle ### {#transaction-lifecycle}
976+
### Transaction lifecycle ### {#transaction-lifecycle}
977977
<!-- ============================================================ -->
978978

979979
A [=/transaction=] has a <dfn>state</dfn>, which is one
@@ -1124,7 +1124,7 @@ They will return true if any transactions were cleaned up, or false otherwise.
11241124
</aside>
11251125

11261126
<!-- ============================================================ -->
1127-
### Transaction Scheduling ### {#transaction-scheduling}
1127+
### Transaction scheduling ### {#transaction-scheduling}
11281128
<!-- ============================================================ -->
11291129

11301130
An event with type <dfn event>`complete`</dfn> is fired at
@@ -1206,7 +1206,7 @@ The following constraints define when a [=/transaction=] can be
12061206

12071207

12081208
<!-- ============================================================ -->
1209-
### Upgrade Transactions ### {#upgrade-transaction-construct}
1209+
### Upgrade transactions ### {#upgrade-transaction-construct}
12101210
<!-- ============================================================ -->
12111211

12121212
An <dfn>upgrade transaction</dfn> is a [=/transaction=] with [=transaction/mode=]
@@ -1298,7 +1298,7 @@ A [=/request=]'s [=get the parent=] algorithm returns the request's
12981298
</aside>
12991299

13001300
<!-- ============================================================ -->
1301-
### Open Requests ### {#open-requests}
1301+
### Open requests ### {#open-requests}
13021302
<!-- ============================================================ -->
13031303

13041304
An <dfn>open request</dfn> is a special type of [=/request=] used
@@ -1336,7 +1336,7 @@ further requests to be processed.
13361336
</div>
13371337

13381338
<!-- ============================================================ -->
1339-
## Key Range ## {#range-construct}
1339+
## Key range ## {#range-construct}
13401340
<!-- ============================================================ -->
13411341

13421342
Records can be retrieved from [=/object stores=] and [=/indexes=]
@@ -1532,7 +1532,7 @@ whether the cursor's [=cursor/value=] is exposed via the API.
15321532
</div>
15331533

15341534
<!-- ============================================================ -->
1535-
## Key Generators ## {#key-generator-construct}
1535+
## Key generators ## {#key-generator-construct}
15361536
<!-- ============================================================ -->
15371537

15381538
When a [=/object store=] is created it can be specified to use a
@@ -4810,7 +4810,7 @@ the contents of the database.
48104810
## The {{IDBTransaction}} interface ## {#transaction}
48114811
<!-- ============================================================ -->
48124812

4813-
[=/transaction=] objects implement the following interface:
4813+
[=/Transaction=] objects implement the following interface:
48144814

48154815
<xmp class=idl>
48164816
[Exposed=(Window,Worker)]
@@ -5699,7 +5699,7 @@ a request=].
56995699
</aside>
57005700

57015701
<!-- ============================================================ -->
5702-
## Object Store Storage Operation ## {#object-store-storage-operation}
5702+
## Object store storage operation ## {#object-store-storage-operation}
57035703
<!-- ============================================================ -->
57045704

57055705
<div class=algorithm>
@@ -5805,7 +5805,7 @@ To <dfn>store a record into an object store</dfn> with
58055805

58065806

58075807
<!-- ============================================================ -->
5808-
## Object Store Retrieval Operations ## {#object-store-retrieval-operation}
5808+
## Object store retrieval operations ## {#object-store-retrieval-operation}
58095809
<!-- ============================================================ -->
58105810

58115811
<div class=algorithm>
@@ -5892,7 +5892,7 @@ with |store|, |range| and optional |count|, run these steps:
58925892

58935893

58945894
<!-- ============================================================ -->
5895-
## Index Retrieval Operations ## {#index-retrieval-operation}
5895+
## Index retrieval operations ## {#index-retrieval-operation}
58965896
<!-- ============================================================ -->
58975897

58985898
<div class=algorithm>
@@ -5979,7 +5979,7 @@ To <dfn>retrieve multiple values from an index</dfn> with
59795979

59805980

59815981
<!-- ============================================================ -->
5982-
## Object Store Deletion Operation ## {#object-store-deletion-operation}
5982+
## Object store deletion operation ## {#object-store-deletion-operation}
59835983
<!-- ============================================================ -->
59845984

59855985
<div class=algorithm>
@@ -6001,7 +6001,7 @@ with |store| and |range|, run these steps:
60016001

60026002

60036003
<!-- ============================================================ -->
6004-
## Record Counting Operation ## {#record-counting-operation}
6004+
## Record counting operation ## {#record-counting-operation}
60056005
<!-- ============================================================ -->
60066006

60076007
<div class=algorithm>
@@ -6018,7 +6018,7 @@ To <dfn>count the records in a range</dfn> with |source| and
60186018

60196019

60206020
<!-- ============================================================ -->
6021-
## Object Store Clear Operation ## {#object-store-clear-operation}
6021+
## Object store clear operation ## {#object-store-clear-operation}
60226022
<!-- ============================================================ -->
60236023

60246024
<div class=algorithm>
@@ -6036,7 +6036,7 @@ To <dfn>clear an object store</dfn> with |store|, run these steps:
60366036

60376037

60386038
<!-- ============================================================ -->
6039-
## Cursor Iteration Operation ## {#cursor-iteration-operation}
6039+
## Cursor iteration operation ## {#cursor-iteration-operation}
60406040
<!-- ============================================================ -->
60416041

60426042
<div class=algorithm>
@@ -6642,7 +6642,7 @@ steps may throw an exception.
66426642

66436643

66446644
<!-- ============================================================ -->
6645-
# Privacy Considerations # {#privacy}
6645+
# Privacy considerations # {#privacy}
66466646
<!-- ============================================================ -->
66476647

66486648
*This section is non-normative.*
@@ -6755,7 +6755,7 @@ it is promptly deleted from the underlying storage.
67556755

67566756

67576757
<!-- ============================================================ -->
6758-
# Security Considerations # {#security}
6758+
# Security considerations # {#security}
67596759
<!-- ============================================================ -->
67606760

67616761
## DNS spoofing attacks ## {#dns-spoofing-attacks}
@@ -6845,7 +6845,7 @@ format, and to reconstruct any internal state from script-visible
68456845
state when older data is encountered.
68466846

68476847
<!-- ============================================================ -->
6848-
# Revision History # {#revision-history}
6848+
# Revision history # {#revision-history}
68496849
<!-- ============================================================ -->
68506850

68516851
*This section is non-normative.*

0 commit comments

Comments
 (0)