Skip to content

Commit

Permalink
Fixed typos
Browse files Browse the repository at this point in the history
  • Loading branch information
mohssenfathi committed Mar 22, 2024
1 parent 03833c1 commit 9e34f4a
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 13 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -159,21 +159,21 @@ public final class AuthorizationCodeAuthProvider: AuthProviding {

/// Performs login using one of the native Uber applications if available.
///
/// There are three possible desinations for auth through this method:
/// There are three possible destinations for auth through this method:
/// 1. The native Uber app
/// 2. The OS supplied Safari browser
/// 3. In app auth through ASWebAuthenticationSession
///
/// This method will run through the desired native app destinations supplied in `appPriority`.
/// For each one it will:
/// * Use the configuration provider to determine if the app is installed, using UIApplication's openUrl.
/// If the app's scheme has not been registered in the Info.plist and is not queyable it will default to true
/// If the app's scheme has not been registered in the Info.plist and is not queryable it will default to true
/// and continue with the auth flow. If it is registered but not installed, we will continue to the next app.
/// * Build a universal link specific to the current app destination
/// * Attempt to launch the app using the `applicationLauncher`. If the app is installed, the native app
/// should be launched (1), if not the OS supplied browser will be launched (2)
///
/// If all app destinations have been exhausted and no url has been launced we fall back to in app auth (3)
/// If all app destinations have been exhausted and no url has been launched we fall back to in app auth (3)
///
/// - Parameters:
/// - appPriority: An ordered list of Uber applications to use to perform login
Expand Down
10 changes: 0 additions & 10 deletions examples/UberSDK/UberSDKTests/UberAuth/AsyncDispatcherTests.swift
Original file line number Diff line number Diff line change
Expand Up @@ -8,16 +8,6 @@ import XCTest

class AsyncDispatcherTests: XCTestCase {

override func setUp() {
super.setUp()
// Put setup code here. This method is called before the invocation of each test method in the class.
}

override func tearDown() {
// Put teardown code here. This method is called after the invocation of each test method in the class.
super.tearDown()
}

func testCallsAllClosures() {
let urls: [URL] = [ URL(string: "http://www.google.com")! ]

Expand Down

0 comments on commit 9e34f4a

Please sign in to comment.