diff --git a/index.bs b/index.bs index 231e683..2edc5f8 100644 --- a/index.bs +++ b/index.bs @@ -90,9 +90,9 @@ The open(|name|, |options|) method 1. Let |r| be the result of running [=open a bucket=] with |shelf|, |name|, and |options|. - 1. If |r| is failure, then [=queue a storage task=] to [=/reject=] |p| with a {{TypeError}}. + 1. If |r| is failure, then [=queue a storage task=] to [=reject=] |p| with a {{TypeError}}. - 1. Otherwise, [=queue a storage task=] to [=/resolve=] |p| with |r|. + 1. Otherwise, [=queue a storage task=] to [=resolve=] |p| with |r|. 1. Return |p|. @@ -190,13 +190,13 @@ The delete(|name|) method steps are 1. Let |p| be [=a new promise=]. -1. If the result of [=validate a bucket name=] with |name| is failure, then [=/reject=] |p| with an {{InvalidCharacterError}}. +1. If the result of [=validate a bucket name=] with |name| is failure, then [=reject=] |p| with an {{InvalidCharacterError}}. 1. Otherwise, [=enqueue the following steps=] to [=StorageBucketManager/storage bucket manager=]: 1. Run [=remove a bucket=] with |shelf| and |name|. - 1. [=Queue a storage task=] to [=/resolve=] |p|. + 1. [=Queue a storage task=] to [=resolve=] |p|. 1. Return |p|. @@ -250,7 +250,7 @@ The keys() method steps are: 1. If |bucket| is non-null, [=list/append=] |key| to |keys|. - 1. [=Queue a storage task=] to [=/resolve=] |p| with |keys|. + 1. [=Queue a storage task=] to [=resolve=] |p| with |keys|. 1. Return |p|.