Skip to content

Commit fe80522

Browse files
authored
Two Storage Swift porting typos (#10588)
1 parent b658216 commit fe80522

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

FirebaseStorage/Sources/StorageDownloadTask.swift

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ import Foundation
2828
* Downloads can currently be returned as `Data` in memory, or as a `URL` to a file on disk.
2929
* Downloads are performed on a background queue, and callbacks are raised on the developer
3030
* specified `callbackQueue` in Storage, or the main queue if left unspecified.
31-
* Currently all uploads must be initiated and managed on the main queue.
31+
* Currently all downloads must be initiated and managed on the main queue.
3232
*/
3333
@objc(FIRStorageDownloadTask)
3434
open class StorageDownloadTask: StorageObservableTask, StorageTaskManagement {
@@ -119,7 +119,7 @@ open class StorageDownloadTask: StorageObservableTask, StorageTaskManagement {
119119
fetcher.comment = "Resuming DownloadTask"
120120
} else {
121121
fetcher = self.fetcherService.fetcher(with: request)
122-
fetcher.comment = "Resuming DownloadTask"
122+
fetcher.comment = "Starting DownloadTask"
123123
}
124124
fetcher.maxRetryInterval = self.reference.storage.maxDownloadRetryInterval
125125

0 commit comments

Comments
 (0)