Skip to content

fix typos #1353

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion docs-src/code-flow.bak.md
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ To configure your solution for code flow + PKCE you have to set the `responseTyp

showDebugInformation: true,

// Not recommented:
// Not recommended:
// disablePKCI: true,
};
```
Expand Down
2 changes: 1 addition & 1 deletion docs/additional-documentation/code-flow-+-pcke.html
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ <h1 id="code-flow">Code Flow</h1>

showDebugInformation: true,

// Not recommented:
// Not recommended:
// disablePKCI: true,
};</code></pre></div><p>After this, you can initialize the code flow using:</p>
<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>
Expand Down
4 changes: 2 additions & 2 deletions docs/classes/AuthConfig.html
Original file line number Diff line number Diff line change
Expand Up @@ -757,7 +757,7 @@ <h3 id="inputs">

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

/**
* Code Flow is by defauld used together with PKCI which is also higly recommented.
* Code Flow is by default used together with PKCI which is also highly recommended.
* You can disbale it here by setting this flag to true.
* https://tools.ietf.org/html/rfc7636#section-1.1
*/
Expand Down
2 changes: 1 addition & 1 deletion docs/classes/JwksValidationHandler.html
Original file line number Diff line number Diff line change
Expand Up @@ -313,7 +313,7 @@ <h3 id="methods">
import { JwksValidationHandler } from &#x27;angular-oauth2-oidc-jwks&#x27;;

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

Expand Down
2 changes: 1 addition & 1 deletion docs/injectables/OAuthService.html
Original file line number Diff line number Diff line change
Expand Up @@ -7379,7 +7379,7 @@ <h3 id="inputs">

<tr>
<td class="col-md-4">
<div class="io-description"><p>Code Flow is by defauld used together with PKCI which is also higly recommented.
<div class="io-description"><p>Code Flow is by default used together with PKCI which is also highly recommended.
You can disbale it here by setting this flag to true.
<a href="https://tools.ietf.org/html/rfc7636#section-1.1">https://tools.ietf.org/html/rfc7636#section-1.1</a></p>
</div>
Expand Down
2 changes: 1 addition & 1 deletion docs/miscellaneous/variables.html
Original file line number Diff line number Diff line change
Expand Up @@ -241,7 +241,7 @@ <h3></h3> <table class="table table-sm table-bordered">
import { JwksValidationHandler } from &#x27;angular-oauth2-oidc-jwks&#x27;;

Please note, that this dependency is not needed for the **code flow**,
which is nowadays the **recommented** one for single page applications.
which is nowadays the **recommended** one for single page applications.
This also results in smaller bundle sizes.
&#x60;</code>
</td>
Expand Down
2 changes: 1 addition & 1 deletion projects/lib/src/auth.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -256,7 +256,7 @@ export class AuthConfig {
public useSilentRefresh?;

/**
* Code Flow is by defauld used together with PKCI which is also higly recommented.
* Code Flow is by default used together with PKCI which is also highly recommended.
* You can disbale it here by setting this flag to true.
* https://tools.ietf.org/html/rfc7636#section-1.1
*/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ After that, you can import it into your application:
import { JwksValidationHandler } from 'angular-oauth2-oidc-jwks';

Please note, that this dependency is not needed for the **code flow**,
which is nowadays the **recommented** one for single page applications.
which is nowadays the **recommended** one for single page applications.
This also results in smaller bundle sizes.
`;

Expand Down