Skip to content

Commit 0d46628

Browse files
authored
Fixing typos (#295)
1 parent 4579c1e commit 0d46628

File tree

7 files changed

+8
-8
lines changed

7 files changed

+8
-8
lines changed

_posts/2022-01-31-introducing-scorecard.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ on the i link on the right hand side.
3535

3636
### Changing our recommended naming convention
3737

38-
As part of the work to improve the overall quality of the Flow Libary, we're making
38+
As part of the work to improve the overall quality of the Flow Library, we're making
3939
a change to our [naming guidelines for node modules](/docs/creating-nodes/packaging#naming).
4040

4141
Previously, we asked that if a module's name started with `node-red-`, that it

docs/api/context/methods/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ function must have the following functions:
2020
[ContextStore.close()](#contextstoreclose) | Close the storage
2121
[ContextStore.get(scope, key, callback)](#contextstoregetscope-key-callback) | Get values from the store
2222
[ContextStore.set(scope, key, value, callback)](#contextstoresetscope-key-value-callback) | Set values in the store
23-
[ContextStore.keys(scope, calback)](#contextstorekeysscope-callback) | Get a list of all keys in the store
23+
[ContextStore.keys(scope, callback)](#contextstorekeysscope-callback) | Get a list of all keys in the store
2424
[ContextStore.delete(scope)](#contextstoredeletescope) | Delete all keys for a given scope
2525
[ContextStore.clean(activeNodes)](#contextstorecleanactivenodes) | Clean the context store
2626

docs/api/ui/treeList/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -116,7 +116,7 @@ Property | Description
116116
Function | Description
117117
-----------------|---------------------------
118118
`item.treeList.remove(detach)` | Remove the item from the tree. Set `detach` to `true` to preserve any event handlers on the item - required if the item is going to be readded elsewhere.
119-
`item.treeList.makeLeaf(detachChildElements)` | Turns an element with children into a leaf node, removing the UI decoration. Set `detachChildElements` to `true` to preseve any child element event handlers.
119+
`item.treeList.makeLeaf(detachChildElements)` | Turns an element with children into a leaf node, removing the UI decoration. Set `detachChildElements` to `true` to preserve any child element event handlers.
120120
`item.treeList.makeParent(children)` | Make the item a parent item, adding the child items
121121
`item.treeList.insertChildAt(item, pos, select)` | Adds a new item at the desired position, optionally selecting it after doing so
122122
`item.treeList.addChild(item, select)` | Appends a child item, optionally selecting it after doing so

docs/creating-nodes/help-style-guide.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ a consistent appearance between nodes.
1313

1414
*Since 2.1.0* : The help text can be provided as markdown rather than HTML. In this
1515
case the `type` attribute of the `<script>` tag must be `text/markdown`.<br>
16-
When creating markdown help text be careful with indentation, markdown is whitespace sensitve so all lines should have no leading whitespace inside the `<script>` tags.
16+
When creating markdown help text be careful with indentation, markdown is whitespace sensitive so all lines should have no leading whitespace inside the `<script>` tags.
1717

1818
<hr/>
1919

docs/creating-nodes/i18n.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,7 @@ of an `<input>`:
100100
<input type="text" data-i18n="[placeholder]myNode.placeholder.foo">
101101
{% endhighlight %}
102102

103-
It is possible to combine these to specifiy multiple substitutions For example,
103+
It is possible to combine these to specify multiple substitutions. For example,
104104
to set both the title attribute and the displayed text:
105105

106106
{% highlight javascript %}

docs/faq/interacting-with-arduino.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -131,7 +131,7 @@ and then you may access all the [richness](https://github.com/rwaldron/johnny-fi
131131
of Johnny-Five from within functions...
132132

133133
var five = context.global.jfive; // create a shorter alias
134-
var led = new five.Led(13); // instatiate the led
134+
var led = new five.Led(13); // instantiate the led
135135
led.blink(500); // blink it every 500 ms
136136

137137
*Note:* this is a simple, but poor example as the led pin is created each time the

docs/user-guide/runtime/securing-node-red.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -432,8 +432,8 @@ The following setting is an example to limit the HTTP access rate in http-in nod
432432
var rateLimit = require("express-rate-limit");
433433
module.exports = {
434434
httpNodeMiddleware: rateLimit({
435-
windowMs: 1000, // 1000 millisecounds is set as the window time.
436-
max: 10 // limit access rate to 10 requests/secound
435+
windowMs: 1000, // 1000 milliseconds is set as the window time.
436+
max: 10 // limit access rate to 10 requests/second
437437
})
438438
}
439439
```

0 commit comments

Comments
 (0)