Skip to content

Commit 013fd5c

Browse files
authored
Fix typos (#229)
1 parent 3b010f0 commit 013fd5c

File tree

3 files changed

+7
-7
lines changed

3 files changed

+7
-7
lines changed

Diff for: README.md

+5-5
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ A library of components to easily integrate the Microsoft Authentication Library
4040
- [:cd: Sample applications](#cd-sample-applications)
4141
- [:calendar: Roadmap](#calendar-roadmap)
4242
- [:books: Resources](#books-resources)
43-
- [:trophy: Contributers](#trophy-contributers)
43+
- [:trophy: Contributors](#trophy-contributors)
4444

4545
## :tada: Features
4646

@@ -229,7 +229,7 @@ The `AzureAD` component is the primary method to add authentication to your appl
229229
login, // login function
230230
logout, // logout function
231231
authenticationState, // the current authentication state
232-
error, // any error that occured during the login process
232+
error, // any error that occurred during the login process
233233
accountInfo, // account info of the authenticated user
234234
}
235235
```
@@ -267,7 +267,7 @@ import { authProvider } from './authProvider';
267267
case AuthenticationState.Unauthenticated:
268268
return (
269269
<div>
270-
{error && <p><span>An error occured during authentication, please try again!</span></p>}
270+
{error && <p><span>An error occurred during authentication, please try again!</span></p>}
271271
<p>
272272
<span>Hey stranger, you look new!</span>
273273
<button onClick={login}>Login</button>
@@ -503,8 +503,8 @@ The following resources may be helpful and provide further insight. If you've wr
503503
- [AAD v2 Scopes](https://docs.microsoft.com/en-us/azure/active-directory/develop/active-directory-v2-scopes)
504504
- [AAD B2C Setup MSA App](https://docs.microsoft.com/en-us/azure/active-directory-b2c/active-directory-b2c-setup-msa-app)
505505

506-
## :trophy: Contributers
506+
## :trophy: Contributors
507507

508-
This library is built with :heart: by members of the open source community. To become a contributer, please see the [contribution guidelines](CONTRIBUTING.md).
508+
This library is built with :heart: by members of the open source community. To become a contributor, please see the [contribution guidelines](CONTRIBUTING.md).
509509

510510
[![](https://sourcerer.io/fame/AndrewCraswell/syncweek-react-aad/react-aad/images/0)](https://sourcerer.io/fame/AndrewCraswell/syncweek-react-aad/react-aad/links/0)[![](https://sourcerer.io/fame/AndrewCraswell/syncweek-react-aad/react-aad/images/1)](https://sourcerer.io/fame/AndrewCraswell/syncweek-react-aad/react-aad/links/1)[![](https://sourcerer.io/fame/AndrewCraswell/syncweek-react-aad/react-aad/images/2)](https://sourcerer.io/fame/AndrewCraswell/syncweek-react-aad/react-aad/links/2)[![](https://sourcerer.io/fame/AndrewCraswell/syncweek-react-aad/react-aad/images/3)](https://sourcerer.io/fame/AndrewCraswell/syncweek-react-aad/react-aad/links/3)[![](https://sourcerer.io/fame/AndrewCraswell/syncweek-react-aad/react-aad/images/4)](https://sourcerer.io/fame/AndrewCraswell/syncweek-react-aad/react-aad/links/4)[![](https://sourcerer.io/fame/AndrewCraswell/syncweek-react-aad/react-aad/images/5)](https://sourcerer.io/fame/AndrewCraswell/syncweek-react-aad/react-aad/links/5)[![](https://sourcerer.io/fame/AndrewCraswell/syncweek-react-aad/react-aad/images/6)](https://sourcerer.io/fame/AndrewCraswell/syncweek-react-aad/react-aad/links/6)[![](https://sourcerer.io/fame/AndrewCraswell/syncweek-react-aad/react-aad/images/7)](https://sourcerer.io/fame/AndrewCraswell/syncweek-react-aad/react-aad/links/7)

Diff for: samples/react-javascript/src/App.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -104,7 +104,7 @@ class App extends Component {
104104
</div>
105105
<div className="SampleBox">
106106
<h2 className="SampleHeader">Errors</h2>
107-
<p>If authentication fails, this box will have the errors that occured</p>
107+
<p>If authentication fails, this box will have the errors that occurred</p>
108108
{error && (
109109
<div style={{ wordWrap: 'break-word' }}>
110110
<p>

Diff for: samples/react-typescript/src/App.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@ const App = () => {
8585
<h2 className="SampleHeader">Errors</h2>
8686
<p>
8787
If authentication fails, this box will have the errors that
88-
occured
88+
occurred
8989
</p>
9090
{error && (
9191
<div style={{ wordWrap: "break-word" }}>

0 commit comments

Comments
 (0)