Skip to content

Commit 097cf4a

Browse files
authored
Fix some typos in docs (#292)
1 parent 3fc5fd9 commit 097cf4a

File tree

3 files changed

+10
-10
lines changed

3 files changed

+10
-10
lines changed

docs/getting-started/docker-custom.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
22
layout: docs-getting-started
3-
title: Adding Prerequistes to Docker
3+
title: Adding Prerequisites to Docker
44
toc: toc-user-guide.html
55
slug: docker-custom
66
redirect_from:
@@ -11,16 +11,16 @@ redirect_from:
1111

1212
The project makes available a number of different versions of the Docker container on [Docker hub](https://hub.docker.com/r/nodered/node-red/) which fall into 2 categories:
1313

14-
- Different underlying NodeJS versions. As new NodeJS LTS versions are released coresponding versions of the container are added.
15-
- Images tagged with the `-minimal` suffix. These containers are designed to contian the absolute libraries required to run Node-RED and it's core nodes.
14+
- Different underlying NodeJS versions. As new NodeJS LTS versions are released corresponding versions of the container are added.
15+
- Images tagged with the `-minimal` suffix. These containers are designed to contain the absolute libraries required to run Node-RED and it's core nodes.
1616

1717
Specifically the `-minimal` containers do not have the native build tools required to build some nodes components triggered by installing them.
1818

19-
Both of these sets of images are based on the NodeJS Alpine containers. Alpine is a Linux distribution that aims to provide the smallest possible install footprint, it is used as the base for many language runtime containers (e.g. NodeJS & Python). As part of a number of optomisations to reduce the size it uses the [musl](https://www.musl-libc.org/intro.html) libc instead of the usual glibc implementation.
19+
Both of these sets of images are based on the NodeJS Alpine containers. Alpine is a Linux distribution that aims to provide the smallest possible install footprint, it is used as the base for many language runtime containers (e.g. NodeJS & Python). As part of a number of optimizations to reduce the size it uses the [musl](https://www.musl-libc.org/intro.html) libc instead of the usual glibc implementation.
2020

21-
Musl works fine with most applications but on some occations it can cause problems e.g. with some of the [SAP](https://github.com/SAP/node-rfc/issues/148) nodes and with some low level video codec.
21+
Musl works fine with most applications but on some occasions it can cause problems e.g. with some of the [SAP](https://github.com/SAP/node-rfc/issues/148) nodes and with some low level video codec.
2222

23-
If you want to extend the provided Docker containers then then you will need to use Apline's package management tool `apk` to install additional libraries or applications.
23+
If you want to extend the provided Docker containers then then you will need to use Alpine's package management tool `apk` to install additional libraries or applications.
2424

2525
FROM nodered/node-red:latest
2626
USER root
@@ -30,7 +30,7 @@ If you want to extend the provided Docker containers then then you will need to
3030

3131
### Debian based containers
3232

33-
As well as the Alpine based containers the Node-RED Docker git project also includes a script to build a version of the Node-RED Docker containers based on the Debian Linux Distribution. This is useful as Debian is a more mainstream Linux distribution and many nodes include instructions on how to install prerequistes.
33+
As well as the Alpine based containers the Node-RED Docker git project also includes a script to build a version of the Node-RED Docker containers based on the Debian Linux Distribution. This is useful as Debian is a more mainstream Linux distribution and many nodes include instructions on how to install prerequisites.
3434

3535
You can build the containers locally by running the following commands:
3636

@@ -43,7 +43,7 @@ This will a container called `testing:node-red-build` which can be run as follow
4343

4444
$ docker run -d -p 1880:1880 -v node_red_data:/data --name myNRtest testing:node-red-build
4545

46-
This container can be extended to add the required prerequistes for your projects. For example to add the required libraries for the [node-red-contrib-machine-learning](https://flows.nodered.org/node/node-red-contrib-machine-learning) node the following Dockerfile will extend the previously built container.
46+
This container can be extended to add the required prerequisites for your projects. For example to add the required libraries for the [node-red-contrib-machine-learning](https://flows.nodered.org/node/node-red-contrib-machine-learning) node the following Dockerfile will extend the previously built container.
4747

4848
FROM testing:node-red-build
4949
USER root

docs/user-guide/messages.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -151,7 +151,7 @@ store the result in a new message property `msg.payload.temperature_c`.
151151
{:style="display: inline-block;"}
152152
<br style="clear: both;" />
153153
*Note that JSONata expressions look a lot like JavaScript, but have some key differences.
154-
Refer to the [jsonata.org](http://jsonata.org) site for more inforation.*
154+
Refer to the [jsonata.org](http://jsonata.org) site for more information.*
155155

156156
### Message sequences
157157

docs/user-guide/writing-functions.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ var newMsg = { payload: msg.payload.length };
8080
return [msg, newMsg];
8181
{% endhighlight %}
8282

83-
#### Handling arbituary number of outputs
83+
#### Handling arbitrary number of outputs
8484

8585
*Since Node-RED 1.3*
8686

0 commit comments

Comments
 (0)