Skip to content

Commit e7832dc

Browse files
author
Christoph Staengle
committed
fix typos
1 parent 3ba7303 commit e7832dc

File tree

8 files changed

+9
-9
lines changed

8 files changed

+9
-9
lines changed

docs-src/code-flow.bak.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ To configure your solution for code flow + PKCE you have to set the `responseTyp
3636

3737
showDebugInformation: true,
3838

39-
// Not recommented:
39+
// Not recommended:
4040
// disablePKCI: true,
4141
};
4242
```

docs/additional-documentation/code-flow-+-pcke.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ <h1 id="code-flow">Code Flow</h1>
8080

8181
showDebugInformation: true,
8282

83-
// Not recommented:
83+
// Not recommended:
8484
// disablePKCI: true,
8585
};</code></pre></div><p>After this, you can initialize the code flow using:</p>
8686
<div><pre class="line-numbers"><code class="language-TypeScript"> this.oauthService.initCodeFlow();</code></pre></div><p>There is also a convenience method <code>initLoginFlow</code> which initializes either the code flow or the implicit flow depending on your configuration. </p>

docs/classes/AuthConfig.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -757,7 +757,7 @@ <h3 id="inputs">
757757

758758
<tr>
759759
<td class="col-md-4">
760-
<div class="io-description"><p>Code Flow is by defauld used together with PKCI which is also higly recommented.
760+
<div class="io-description"><p>Code Flow is by default used together with PKCI which is also highly recommended.
761761
You can disbale it here by setting this flag to true.
762762
<a href="https://tools.ietf.org/html/rfc7636#section-1.1">https://tools.ietf.org/html/rfc7636#section-1.1</a></p>
763763
</div>
@@ -2537,7 +2537,7 @@ <h3 id="inputs">
25372537
public useSilentRefresh?;
25382538

25392539
/**
2540-
* Code Flow is by defauld used together with PKCI which is also higly recommented.
2540+
* Code Flow is by default used together with PKCI which is also highly recommended.
25412541
* You can disbale it here by setting this flag to true.
25422542
* https://tools.ietf.org/html/rfc7636#section-1.1
25432543
*/

docs/classes/JwksValidationHandler.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -313,7 +313,7 @@ <h3 id="methods">
313313
import { JwksValidationHandler } from &#x27;angular-oauth2-oidc-jwks&#x27;;
314314

315315
Please note, that this dependency is not needed for the **code flow**,
316-
which is nowadays the **recommented** one for single page applications.
316+
which is nowadays the **recommended** one for single page applications.
317317
This also results in smaller bundle sizes.
318318
&#x60;;
319319

docs/injectables/OAuthService.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7379,7 +7379,7 @@ <h3 id="inputs">
73797379

73807380
<tr>
73817381
<td class="col-md-4">
7382-
<div class="io-description"><p>Code Flow is by defauld used together with PKCI which is also higly recommented.
7382+
<div class="io-description"><p>Code Flow is by default used together with PKCI which is also highly recommended.
73837383
You can disbale it here by setting this flag to true.
73847384
<a href="https://tools.ietf.org/html/rfc7636#section-1.1">https://tools.ietf.org/html/rfc7636#section-1.1</a></p>
73857385
</div>

docs/miscellaneous/variables.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -241,7 +241,7 @@ <h3></h3> <table class="table table-sm table-bordered">
241241
import { JwksValidationHandler } from &#x27;angular-oauth2-oidc-jwks&#x27;;
242242

243243
Please note, that this dependency is not needed for the **code flow**,
244-
which is nowadays the **recommented** one for single page applications.
244+
which is nowadays the **recommended** one for single page applications.
245245
This also results in smaller bundle sizes.
246246
&#x60;</code>
247247
</td>

projects/lib/src/auth.config.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -256,7 +256,7 @@ export class AuthConfig {
256256
public useSilentRefresh?;
257257

258258
/**
259-
* Code Flow is by defauld used together with PKCI which is also higly recommented.
259+
* Code Flow is by default used together with PKCI which is also highly recommended.
260260
* You can disbale it here by setting this flag to true.
261261
* https://tools.ietf.org/html/rfc7636#section-1.1
262262
*/

projects/lib/src/token-validation/jwks-validation-handler.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ After that, you can import it into your application:
1313
import { JwksValidationHandler } from 'angular-oauth2-oidc-jwks';
1414
1515
Please note, that this dependency is not needed for the **code flow**,
16-
which is nowadays the **recommented** one for single page applications.
16+
which is nowadays the **recommended** one for single page applications.
1717
This also results in smaller bundle sizes.
1818
`;
1919

0 commit comments

Comments
 (0)