Skip to content

Commit 2efaa0f

Browse files
committed
Fixing typo
1 parent 78fef33 commit 2efaa0f

1 file changed

Lines changed: 5 additions & 5 deletions

File tree

README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,7 @@ To restrict who can sign in to your application, use one of the options:
9696

9797
You can restrict sign-in access for your application to only user accounts that are in a single Azure AD tenant - including *guest accounts* of that tenant. This scenario is a common for *line-of-business applications*:
9898

99-
1. In the **web.config** file of your **TodoListService**, change the value for the `Tenant` parameter from `Common` to the tenant name of the organization, such as `contoso.onmicrosoft.com`.
99+
1. In the **web.config** file of your **TodoListService**, change the value for the `Tenant` parameter from `Common` to the tenant name of the organization, such as `contoso.onmicrosoft.com` or the *Tenant Id*.
100100
2. In your [OWIN Startup class](#configure-the-authentication-pipeline), set the `ValidateIssuer` argument to `true`.
101101

102102
### Option 2: Restrict access to a list of known organizations
@@ -108,15 +108,15 @@ You can restrict sign-in access to only user accounts that are in an Azure AD or
108108

109109
### Option 3: Restrict the categories of users that can sign-in to your application
110110

111-
This scenario is a common for *SaaS* applications that are focused only on either consumers or organizations, therefore want to block accepting either personal accounts or work or school accounts.
111+
This scenario is a common for *SaaS* applications that are focused on either consumers or organizations, therefore want to block accepting either personal accounts or work or school accounts.
112112

113113
1. In the **web.config** file of your **TodoListService**, use on of the values below for `Tenant` parameter:
114114

115115
Value | Description
116116
----- | --------
117-
`common` | users can sign in with any Work and School account, or Microsoft Personal account
118-
`organizations` | users can sign in with any Work and School account
119-
`consumers` | users can sign in with a Microsoft Personal account
117+
`common` | Users can sign in with any Work and School account, or Microsoft Personal account
118+
`organizations` | Users can sign in with any Work and School account
119+
`consumers` | Users can sign in with a Microsoft Personal account
120120

121121
> Note: the values above are not considered a *tenant*, but a *convention* to restrict certain categories of users
122122

0 commit comments

Comments
 (0)