diff --git a/FirebaseStorage/Sources/AsyncAwait.swift b/FirebaseStorage/Sources/AsyncAwait.swift index e38a2525711..cdcea1bec46 100644 --- a/FirebaseStorage/Sources/AsyncAwait.swift +++ b/FirebaseStorage/Sources/AsyncAwait.swift @@ -22,7 +22,7 @@ public extension StorageReference { /// API may be a better option. /// /// - Parameters: - /// - size: The maximum size in bytes to download. If the download exceeds this size, + /// - maxSize: The maximum size in bytes to download. If the download exceeds this size, /// the task will be cancelled and an error will be thrown. /// - Throws: An error if the operation failed, for example if the data exceeded `maxSize`. /// - Returns: Data object. @@ -114,7 +114,7 @@ public extension StorageReference { /// Asynchronously downloads the object at the current path to a specified system filepath. /// /// - Parameters: - /// - fileUrl: A URL representing the system file path of the object to be uploaded. + /// - fileURL: A URL representing the system file path of the object to be uploaded. /// - onProgress: An optional closure function to return a `Progress` instance while the /// download proceeds. /// - Throws: An error if the operation failed, for example if Storage was unreachable