Skip to content

Commit 5a4ab5d

Browse files
author
Dave Conway-Jones
committed
few small spelling mistakes.
1 parent fd56ae4 commit 5a4ab5d

File tree

5 files changed

+10
-10
lines changed

5 files changed

+10
-10
lines changed

docs/getting-started/aws.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ This guide takes you through the steps to get Node-RED running in an AWS environ
1212
There are two approaches:
1313

1414
1. [Running on the AWS Elastic Beanstalk Service (EB)](#running-on-aws-ebs)
15-
2. [Running on Elastic Beanstalk with High Availability](#running-on-elastic-beanstalk-with-high-availabilty)
15+
2. [Running on Elastic Beanstalk with High Availability](#running-on-elastic-beanstalk-with-high-availability)
1616
3. [Running under an Ubuntu image on AWS EC2](#running-on-aws-ec2-with-ubuntu)
1717

1818
### Running on AWS EBS
@@ -89,17 +89,17 @@ Node-RED is now accessible directly from the web url of the application. However
8989

9090
2. Select the EC2 instance which is running the node-red application. copy its IP address
9191

92-
3. Enter the IP address in the browser with a port of 8081. This will provide direct access to the node-red adminstration console.
92+
3. Enter the IP address in the browser with a port of 8081. This will provide direct access to the node-red administration console.
9393

9494
Note: the public IP address also provides access to the node-red application and it would be good practice to remove that access at the same time i.e. the HTTP rule for port 80.
9595

9696
Your Node-RED instance is now running on EBS. Any flows you create will be saved to AWS S3 so you can tear down the environment and the flows will be accessible whenever you redeploy.
9797

98-
### Running on Elastic Beanstalk with High Availabilty
98+
### Running on Elastic Beanstalk with High availability
9999

100100
This deployment option gives you a multiple node Node-RED setup, with a shared filesystem using Amazon Elastic File System (EFS). Because it runs multiple nodes behind a load balancer, you will have high availabiliity - if a node dies, Elastic Beanstalk will replace it automgically.
101101

102-
![solution diagram](/images/node-red-ha-on-aws.png "Node-RED on Elastic Beanstalk with High Availabilty")
102+
![solution diagram](/images/node-red-ha-on-aws.png "Node-RED on Elastic Beanstalk with High availability")
103103

104104
To get started, clone the repository here [https://github.com/guysqr/node-red-ha-on-aws](https://github.com/guysqr/node-red-ha-on-aws) and follow the simple instructions. The infrastructure is created for you by a CloudFormation template, so you don't need to know much about AWS to set it up.
105105

docs/getting-started/docker.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -223,7 +223,7 @@ Dockerfile
223223
README.md
224224
package.json # add any extra nodes your flow needs into your own package.json.
225225
flows.json # the normal place Node-RED store your flows
226-
flows_cred.json # credemtials your flows may need
226+
flows_cred.json # credentials your flows may need
227227
settings.js # your settings file
228228
```
229229

@@ -278,7 +278,7 @@ You _build_ this Dockerfile normally:
278278
docker build -t your-image-name:your-tag .
279279
```
280280

281-
To _run_ locally for development where changes are written immediately and only the local directory that youre working from, `cd` into the project's directory and then run:
281+
To _run_ locally for development where changes are written immediately and only the local directory that you are working from, `cd` into the project's directory and then run:
282282

283283
```bash
284284
docker run --rm -e "NODE_RED_CREDENTIAL_SECRET=your_secret_goes_here" -p 1880:1880 -v `pwd`:/data --name a-container-name your-image-name
@@ -323,7 +323,7 @@ docker run -d -p 1880:1880 --name mynodered nodered/node-red
323323
Once it is running headless you can use the following command to get access back into the container.
324324
```
325325
$ docker exec -it mynodered /bin/bash
326-
bash-4.4$
326+
bash-4.4$
327327
```
328328

329329
Will give a command line inside the container - where you can then run the npm install

docs/user-guide/context.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -133,6 +133,6 @@ The [Creating Nodes guide](/docs/creating-nodes/context) describes how to use co
133133

134134
### Deleting context from the file store
135135

136-
Context can be permenantly deleted by using a Change node set to delete.
136+
Context can be permanently deleted by using a Change node set to delete.
137137

138138
<div style="text-align: center"><img src="/docs/user-guide/images/context_delete.png" width="488px"></div>

docs/user-guide/editor/sidebar/info.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ title: 'Sidebar: Information'
2020
The Information sidebar shows information about the flows. This includes an outline
2121
view of all flows and nodes, as well as details of the current selection.
2222

23-
The outline view can be searched using the same syntax as the [main seach dialog](../workspace/search).
23+
The outline view can be searched using the same syntax as the [main search dialog](../workspace/search).
2424

2525
Hovering over an entry in the outline reveals a set of options.
2626

docs/user-guide/writing-functions.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -174,7 +174,7 @@ if (context.get("counter") === undefined) {
174174

175175
The Setup function can return a Promise if it needs to complete asynchronous work
176176
before the main Function can start processing messages. Any messages that arrive
177-
before the Setup function has completed will be queued up and handled when its ready.
177+
before the Setup function has completed will be queued up, and handled when it is ready.
178178

179179
### Tidying up
180180

0 commit comments

Comments
 (0)