File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
Sources/MailTMSwift/Services Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -26,7 +26,7 @@ open class MTMessageService {
26
26
/// - Parameters:
27
27
/// - page: pagination page number
28
28
/// - token: account JWT token
29
- /// - completion: when successful, returns a completion handler `Result` type of ``[ MTMessage] `` and ``MTError`` if some error occurred
29
+ /// - completion: when successful, returns a completion handler `Result` type of array of`` MTMessage`` and ``MTError`` if some error occurred
30
30
/// - Returns: ServiceTask which can be used to cancel on-going http(s) request
31
31
/// - Note: Messages received will not be complete. Use the retreived messages to show a list of messages.
32
32
/// To retreive the complete message, use ``MTMessageService/getMessage(id:token:)``.
@@ -224,7 +224,7 @@ open class MTMessageService {
224
224
/// - Parameters:
225
225
/// - id: message id
226
226
/// - token: account JWT Token
227
- /// - Returns: `` URLRequest` ` configured to retreive message source.
227
+ /// - Returns: `URLRequest` configured to retreive message source.
228
228
/// - Note: This method will return nil, if the message source url is nil.
229
229
public func getSourceRequest( id: String , token: String ) -> URLRequest ? {
230
230
guard let url = URL ( string: Endpoints . sourcesFromId ( id) ) else {
You can’t perform that action at this time.
0 commit comments