Skip to content

Commit cd7b034

Browse files
Tyler WhitneyTyler Whitney
authored andcommitted
acrolinx
1 parent eaa435b commit cd7b034

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

articles/active-directory/develop/quickstart-v2-ios.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ ms.collection: M365-identity-device-management
2525

2626
This quickstart contains a code sample that demonstrates how a native iOS or macOS application can sign in personal, work and school accounts, get an access token, and call the Microsoft Graph API.
2727

28-
This quickstart is applicable to both iOS and macOS apps. Some steps are needed only for iOS apps. Those steps call out that they are only for iOS.
28+
This quickstart applies to both iOS and macOS apps. Some steps are needed only for iOS apps. Those steps call out that they are only for iOS.
2929

3030
![Shows how the sample app generated by this quickstart works](media/quickstart-v2-ios/ios-intro.svg)
3131

@@ -189,7 +189,7 @@ self.applicationContext = try MSALPublicClientApplication(configuration: msalCon
189189
190190
### For iOS only, additional app requirements
191191
192-
Your app must also have the following in your `AppDelegate`. This lets MSAL SDK handle token response from the Auth broker app when you perform authentication.
192+
Your app must also have the following in your `AppDelegate`. This lets MSAL SDK handle token response from the Auth broker app when you do authentication.
193193
194194
```swift
195195
func application(_ app: UIApplication, open url: URL, options: [UIApplication.OpenURLOptionsKey : Any] = [:]) -> Bool {
@@ -220,7 +220,7 @@ Your app must also have the following in your `AppDelegate`. This lets MSAL SDK
220220
}
221221
```
222222
223-
Finally, your app must has an `LSApplicationQueriesSchemes` entry in your ***Info.plist*** alongside the `CFBundleURLTypes`. The sample comes with this included.
223+
Finally, your app must have an `LSApplicationQueriesSchemes` entry in your ***Info.plist*** alongside the `CFBundleURLTypes`. The sample comes with this included.
224224
225225
```xml
226226
<key>LSApplicationQueriesSchemes</key>
@@ -239,7 +239,7 @@ MSAL has two methods used to acquire tokens: `acquireToken` and `acquireTokenSil
239239
Some situations require users to interact with Microsoft identity platform. In these cases, the end user may be required to select their account, enter their credentials, or consent to your app's permissions. For example,
240240
241241
* The first time users sign in to the application
242-
* If a user resets their password, they will need to enter their credentials
242+
* If a user resets their password, they'll need to enter their credentials
243243
* When your application is requesting access to a resource for the first time
244244
* When MFA or other Conditional Access policies are required
245245

0 commit comments

Comments
 (0)