Skip to content

Commit 8ea7bcf

Browse files
committed
m
1 parent 325e84f commit 8ea7bcf

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

packages/firebase/index.d.ts

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5437,11 +5437,11 @@ declare namespace firebase.storage {
54375437
/**
54385438
* List all items (files) and prefixes (folders) under this storage reference.
54395439
*
5440-
* This is a helper method for calling list() repeatedly until there are no
5441-
* more results. The default pagination size is 1000.
5440+
* This is a helper method for calling list() repeatedly until there are
5441+
* no more results. The default pagination size is 1000.
54425442
*
5443-
* Note: The results may not be a consistent snapshot if objects are changed
5444-
* between paginating requests.
5443+
* Note: The results may not be a consistent snapshot if objects are
5444+
* changed while this operation is running.
54455445
*
54465446
* Warning: listAll may potentially consume too many resources if there are
54475447
* too many results.

packages/storage/src/reference.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -212,8 +212,8 @@ export class Reference {
212212
* Note: The results may not be a consistent snapshot if objects are changed
213213
* between paginating requests.
214214
*
215-
* Warning: listAll may potentially consume too many resources if there are
216-
* too many results.
215+
* This is a helper method for calling list() repeatedly until there are
216+
* no more results. The default pagination size is 1000.
217217
*
218218
* @return A Promise that resolves with all the items and prefixes under
219219
* the current storage reference. `prefixes` contains references to

0 commit comments

Comments
 (0)