Bläddra i källkod

[storage] Docs build fixes (#13811)

Paul Beusterien 1 år sedan
förälder
incheckning
34bc1ffc87
1 ändrade filer med 2 tillägg och 2 borttagningar
  1. 2 2
      FirebaseStorage/Sources/AsyncAwait.swift

+ 2 - 2
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