Skip to content

Commit 1c611ba

Browse files
Adam Harveyadamharvey-okta
authored andcommitted
chore: Fix typos
1 parent 1f4be85 commit 1c611ba

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

2020-02-07-transactional-mfa.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -229,7 +229,7 @@ In the `app/index.html` which is auto-generated as a boilerplate during the crea
229229

230230
**NOTE**: You'll need to replace the `baseUrl`, `clientId`, and `issuer` above with the values from your own Okta org.
231231

232-
What's going on here is that the first time through, there will be a `stateToken` and the step-up MFA will be triggered. Once you've satisfied the factor requirement (such as acknowledging the push notification in Okta Verify), you're redirected back to this same page by virtue of the `redirectUri` defined above. The redirect includes the authorization code set by okta. The redirect is detected and the authorization code flow + pkce is completed by the widget:
232+
What's going on here is that the first time through, there will be a `stateToken` and the step-up MFA will be triggered. Once you've satisfied the factor requirement (such as acknowledging the push notification in Okta Verify), you're redirected back to this same page by virtue of the `redirectUri` defined above. The redirect includes the authorization code set by Okta. The redirect is detected and the authorization code flow + pkce is completed by the widget:
233233

234234
```javascript
235235
if (window.location.href.indexOf('#')) {

2025-02-26-okta-hosted-sign-in-widget.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -812,7 +812,7 @@ The remaining task is to customize the default Content Security Policy (CSP) to
812812
- ✅ Ensure the libraries you use for DOM manipulation are safe from XSS and appropriately sanitize inputs (if this applies to you). We have several blog posts on this topic if you search for [XSS](https://developer.okta.com/search/#q=xss&f:@commonoktasource=[Developer%20blog]) in our content collection.
813813
- ✅ And lastly, it never hurts to get a security review when dealing with code affecting authentication.
814814

815-
CSP is located under the **Settings** tab on the **Sign-in page** section, **Customizations** > **Brands** > **[your custom brand]** > **Pages** > **Sign-in page** > **Settings**. Un the **Content Security Policy** section, click on the **edit** button and add the following **Trusted external resources**:
815+
CSP is located under the **Settings** tab on the **Sign-in page** section, **Customizations** > **Brands** > **[your custom brand]** > **Pages** > **Sign-in page** > **Settings**. In the **Content Security Policy** section, click on the **edit** button and add the following **Trusted external resources**:
816816
- https://code.jquery.com
817817
- https://cdnjs.cloudflare.com
818818
- https://fonts.googleapis.com

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -127,7 +127,7 @@ What this command does is:
127127
- `-v $PWD:/app` - This mounts the current directory (the okta-blog source code repo) as `/app` in the Docker container's filesystem. This way, if you change articles or mess with the blog locally, your changes will be picked up by the blog software.
128128
- `-it` - These CLI options just map the Docker container to your current terminal so that when you CTRL+c to exit the blog the Docker container will be killed.
129129
- `okta-blog` - This is telling Docker to run the `okta-blog` image you created earlier using that `docker build` command. The `-t` option you specified earlier when running `docker build` assigned a name tag to the image so you could easily reference it.
130-
- `npm start` - This is the actual command you're telling Docker to run to launch the blog sofware. Docker will start the container up and then run this command inside the container to launch the Jekyll blog.
130+
- `npm start` - This is the actual command you're telling Docker to run to launch the blog software. Docker will start the container up and then run this command inside the container to launch the Jekyll blog.
131131

132132
After that, all you have to do is open your browser and visit `http://localhost:4000` to visit the site!
133133

@@ -206,7 +206,7 @@ To add a table of contents, use the following:
206206
{% include toc.md %}
207207
```
208208

209-
For AciiDoc, add the following just after the front matter:
209+
For AsciiDoc, add the following just after the front matter:
210210

211211
```
212212
:page-liquid:

0 commit comments

Comments
 (0)