From ee2b4df2745c048c5f87796d3609da0ef343e504 Mon Sep 17 00:00:00 2001
From: Ayu Ishii <48255136+ayuishii@users.noreply.github.com>
Date: Wed, 11 Oct 2023 13:33:25 -0700
Subject: [PATCH] Remove "/" from reject and resolve
---
index.bs | 10 +++++-----
1 file changed, 5 insertions(+), 5 deletions(-)
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|.