@@ -30,7 +30,7 @@ extension Client {
3030 /// of the upload process as data is uploaded to the server. `nil` by default.
3131 /// - Parameter completionHandler: Adds a handler to be called once the upload has finished.
3232 ///
33- /// - Returns: A `MultipartUpload` object that allows monitoring progress , cancelling the upload request, etc .
33+ /// - Returns: An `Uploader` that allows starting , cancelling and monitoring the upload .
3434 @objc public func uploadURL( using localURL: NSURL ,
3535 options: UploadOptions = . defaults,
3636 queue: DispatchQueue = . main,
@@ -62,7 +62,7 @@ extension Client {
6262 /// of the upload process as data is uploaded to the server. `nil` by default.
6363 /// - Parameter completionHandler: Adds a handler to be called once the upload has finished.
6464 ///
65- /// - Returns: A `MultifileUpload` object that allows monitoring progress , cancelling the upload request, etc .
65+ /// - Returns: An `Uploader` that allows starting , cancelling and monitoring the upload .
6666 @objc public func uploadMultipleURLs( using localURLs: [ NSURL ] ,
6767 options: UploadOptions = . defaults,
6868 queue: DispatchQueue = . main,
@@ -94,7 +94,7 @@ extension Client {
9494 /// of the upload process as data is uploaded to the server. `nil` by default.
9595 /// - Parameter completionHandler: Adds a handler to be called once the upload has finished.
9696 ///
97- /// - Returns: An object conforming to `Uploader` that allows starting, cancelling and monitoring the upload.
97+ /// - Returns: An `Uploader` that allows starting, cancelling and monitoring the upload.
9898 @objc public func uploadData( using data: NSData ,
9999 options: UploadOptions = . defaults,
100100 queue: DispatchQueue = . main,
@@ -126,7 +126,7 @@ extension Client {
126126 /// of the upload process as data is uploaded to the server. `nil` by default.
127127 /// - Parameter completionHandler: Adds a handler to be called once the upload has finished.
128128 ///
129- /// - Returns: An object conforming to `Uploader` that allows starting, cancelling and monitoring the upload.
129+ /// - Returns: An `Uploader` that allows starting, cancelling and monitoring the upload.
130130 @objc public func uploadMultipleData( using multipleData: [ NSData ] ,
131131 options: UploadOptions = . defaults,
132132 queue: DispatchQueue = . main,
0 commit comments