Skip to content

Commit 149a82c

Browse files
committed
docs: correct spelling
Signed-off-by: Vladimir Belousov <[email protected]>
1 parent 754db4e commit 149a82c

10 files changed

+21
-21
lines changed

docs/concepts/identity.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ slug: /concepts/identity
66
description: What is an Identity
77
---
88

9-
An _identity_ (sometimes refered as a _person_) represents a human being that require access to interact with some applications.
9+
An _identity_ (sometimes referred as a _person_) represents a human being that require access to interact with some applications.
1010

1111
With public sites, an identity typically represents a customer, while in workforce it typically represents an employee or contractor.
1212

docs/guides/get_started/adding_app.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ import TabItem from '@theme/TabItem';
1313

1414
An _app_ represents your application where users logs in.
1515

16-
For simplicty, let's create a server-side web app.
16+
For simplicity, let's create a server-side web app.
1717

1818
:::note
1919
Crossid supports various app types such as _single page applications (SPA)_, _mobile_ and _APIs_. for more info see [application](/docs/concepts/application).
@@ -28,7 +28,7 @@ To speed things up, let's start from a sample with a framework of your choice.
2828
| Node.js Express | [see walk through](/docs/langs/backend/nodejs-express) |
2929
| Golang | https://github.com/crossid/samples-golang |
3030

31-
Each sample has a _README.md_ file with instructipns how to set up the sample.
31+
Each sample has a _README.md_ file with instructions how to set up the sample.
3232

3333
:::note
3434
For more in-depth guides per language, check [languages](/docs/languages).
@@ -91,6 +91,6 @@ Crossid will give you back _client id_ and _client secret_ needed for our app.
9191

9292
### Update your app
9393

94-
Everytime a user tries to login, the app should redirect to Crossid and provide the _client id_.
94+
Every time a user tries to login, the app should redirect to Crossid and provide the _client id_.
9595

9696
Follow the _README.md_ of the sample project how to set the _client_id_ and optionally the _client_secret_ in your app.

docs/guides/get_started/adding_person.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ import TabItem from '@theme/TabItem';
1111

1212
A person is a digital representation of a human that access your apps. this can be a customer for public web sites or an employee for a private app.
1313

14-
With Crossid you don't need to maintain your own user management. Ceating new user profile, granting permissions, unlock or reseting credentials can all be done via the admin console.
14+
With Crossid you don't need to maintain your own user management. Creating new user profile, granting permissions, unlock or resetting credentials can all be done via the admin console.
1515

1616
Lets add a new person:
1717

docs/guides/get_started/signup.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -57,10 +57,10 @@ Check your email for tenant activation.
5757
## Get API token
5858

5959
:::note
60-
API token is only required if you plan to interact with the REST API using an HTTP clinet such as curl. Skip this step if you plan to use the web admin console.
60+
API token is only required if you plan to interact with the REST API using an HTTP client such as curl. Skip this step if you plan to use the web admin console.
6161
:::
6262

63-
Let's get a short access token that is required to securely intreact with Crossid API.
63+
Let's get a short access token that is required to securely interact with Crossid API.
6464

6565
<Tabs
6666
defaultValue="console"

docs/guides/howto/add_spa_app.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -26,4 +26,4 @@ Crossid will give you back _client id_ to be embedded into your app's code.
2626

2727
## Update your app
2828

29-
Everytime a user tries to login, the app should redirect to Crossid and provide the _client id_.
29+
Every time a user tries to login, the app should redirect to Crossid and provide the _client id_.

docs/guides/howto/add_web_app.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -26,4 +26,4 @@ Crossid will give you back _client id_ and _client_secret_ to be embedded into y
2626

2727
## Update your app
2828

29-
Everytime a user tries to login, the app should redirect to Crossid and provide the _client id_.
29+
Every time a user tries to login, the app should redirect to Crossid and provide the _client id_.

docs/guides/howto/custom_domain.md

+6-6
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ This requires you to add a TXT record with the given details in your domain entr
3838

3939
<img src="/img/howto/customdomain_dns_record.png" width="60%"/><br/><br/>
4040

41-
(See below if your DNS provider is Godaddy)
41+
(See below if your DNS provider is GoDaddy)
4242

4343
After adding the DNS record, click the **Verify Domain** button.
4444

@@ -54,27 +54,27 @@ Issuing a certificate is beyond the scope of this tutorial.
5454

5555
Once a certificate issued, you should have a PEM file with a full chain certificate and a key.
5656

57-
In the domains action, click the **deploy** button (see screenshow above).
57+
In the domains action, click the **deploy** button (see screenshot above).
5858

5959
Provide the certificate and key and click deploy.
6060

61-
If everything is okay, the delpoyment state should be green.
61+
If everything is okay, the deployment state should be green.
6262

6363
Wait a bit for the deployment process to end.
6464

6565
## Use the domain
6666

6767
Refer to your domain instead of _crossid.io_, for example, if your tenant is _acme_, located in US then
6868

69-
OAuth endpoints would be refered to: _https://acme.crossid.io/oauth2/.well-known/openid-configuration_
69+
OAuth endpoints would be referred to: _https://acme.crossid.io/oauth2/.well-known/openid-configuration_
7070

7171
If your custom domain is _auth.acme.io_, your can refer now to the URL: _https://auth.acme.io/oauth2/.well-known/openid-configuration_ instead.
7272

7373
## DNS Providers
7474

75-
### Godaddy
75+
### GoDaddy
7676

77-
If your domain is hosted in Godaddy follow these steps:
77+
If your domain is hosted in GoDaddy follow these steps:
7878

7979
1. Open https://dcc.godaddy.com/manage/acme.io/dns
8080
1. Put a _TXT_ record with the given _name_ and _value_.

docs/guides/howto/machine_to_machine.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -3,12 +3,12 @@ id: machine_to_machine
33
title: Machine to Machine
44
sidebar_label: Machine to Machine
55
slug: /guides/howto/machine-to-machine
6-
description: How to programatically access a machine from a machin.
6+
description: How to programmatically access a machine from a machine.
77
---
88

99
A service (aka: _machine_) is a non human program that may request an access token from _Crossid_ in order to authenticate to other services.
1010

11-
A good example is a micro service or a schedueld job that requires access to a protected REST API.
11+
A good example is a micro service or a scheduled job that requires access to a protected REST API.
1212

1313
This how-to explains how to perform authentication programmatically, with no user interaction, so a service could access some API.
1414

@@ -55,7 +55,7 @@ curl -X POST \
5555

5656
### Machine to Machine
5757

58-
Thie machine to machine integration will make our service account be able to authenticate via OAuth2.
58+
This machine to machine integration will make our service account be able to authenticate via OAuth2.
5959

6060
<Tabs
6161
defaultValue="console"

docs/langs/backend/nodejs_express.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ app.get("/", (req, res) => {
7878
app.listen(3005, () => console.log("listening at http://localhost:3005"));
7979
```
8080

81-
Let's start a reverse proxy which will route any traffic comming from 443 to port 3005.
81+
Let's start a reverse proxy which will route any traffic coming from 443 to port 3005.
8282

8383
```bash
8484
caddy reverse-proxy --from localhost:443 --to localhost:3005

docs/langs/overview.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ New to Crossid? check out the [get started](/docs/guides/get-started) guide.
1111

1212
The _OpenID Connect_ and _OAuth2_ are standard protocols and there are many libraries that support them.
1313

14-
We have written some walk throughts on popular languages and frameworks to get you started.
14+
We have written some walkthroughs on popular languages and frameworks to get you started.
1515

1616
### Languages & Framework Guides
1717

@@ -38,7 +38,7 @@ We advise not to use any proprietary libraries to avoid vendor lock.
3838
| Library |
3939
| ------------------------------------------------------------------------- |
4040
| [Node OIDC Provider](https://github.com/panva/node-oidc-provider) |
41-
| [Express OpenID Conenct](https://github.com/auth0/express-openid-connect) |
41+
| [Express OpenID Connect](https://github.com/auth0/express-openid-connect) |
4242
| [PassportJS](http://www.passportjs.org) |
4343

4444
#### Golang

0 commit comments

Comments
 (0)