Skip to content

Commit

Permalink
grammar fix
Browse files Browse the repository at this point in the history
  • Loading branch information
underthestars-zhy committed May 2, 2023
1 parent 5ea754e commit 750094a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Sources/MobbinAPI/MobbinAPI.swift
Original file line number Diff line number Diff line change
Expand Up @@ -17,12 +17,12 @@ public class MobbinAPI {
self.token = token
}

public func retriveToken() throws -> Token {
public func retrieveToken() throws -> Token {
guard let token else { throw MobbinError.noTokenFounded }
return token
}

public func retriveUserInfo() throws -> UserInfo {
public func retrieveUserInfo() throws -> UserInfo {
guard let userInfo else { throw MobbinError.noUserInfoFounded }
return userInfo
}
Expand Down

0 comments on commit 750094a

Please sign in to comment.