Skip to content

Commit 58c1c2a

Browse files
committed
fix: typo corrections
1 parent 19f1454 commit 58c1c2a

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

storage/listObjectContexts.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ function main(bucketName = 'my-bucket') {
4343
const bucket = storage.bucket(bucketName);
4444

4545
/**
46-
* List any object that has a context with the specified key attached.
46+
* List any object that has a context with the specified key and value.
4747
* Syntax: contexts."<key>"="<value>"
4848
*/
4949
const filterByValue = 'contexts."priority"="high"';
@@ -83,7 +83,7 @@ function main(bucketName = 'my-bucket') {
8383
filesNoHighPriority.forEach(file => console.log(` - ${file.name}`));
8484

8585
/**
86-
* List any object that that does not have a context with the specified key attached.
86+
* List any object that does not have a context with the specified key attached.
8787
* Syntax: -contexts."<key>":*
8888
*/
8989
const absenceOfKey = '-contexts."team-owner":*';

0 commit comments

Comments
 (0)