Skip to content

Commit 1364b8e

Browse files
committed
Fix freshly caught vale errors
1 parent 04f6a21 commit 1364b8e

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

45 files changed

+137
-94
lines changed
+1-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
* [git](https://git-scm.com/downloads)
2-
* Node.js and npm. Minimum version Node 18.17.0. You can find instructions on how to install both using nvm (Node Version Manager) for Linux, Mac, and WSL [here](https://github.com/nvm-sh/nvm). For Windows users, refer to Microsoft's guide to [Install NodeJS on Windows](https://docs.microsoft.com/en-us/windows/dev-environment/javascript/nodejs-on-windows).
2+
* Node.js and npm. Minimum version Node 18.17.0. You can find instructions on how to install both using `nvm` (Node Version Manager) for Linux, Mac, and WSL [here](https://github.com/nvm-sh/nvm). For Windows users, refer to Microsoft's guide to [Install NodeJS on Windows](https://docs.microsoft.com/en-us/windows/dev-environment/javascript/nodejs-on-windows).
33

Diff for: docs/advanced-ai/langchain/langchain-learning-resources.md

+2
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,8 @@ The [LangChain documentation](https://docs.langchain.com/docs/) includes introdu
1212

1313
[What Product People Need To Know About LangChain](https://www.commandbar.com/blog/langchain-guide) provides a list of terminology and concepts, explained with helpful metaphors. Aimed at a wide audience.
1414

15+
<!-- vale Vale.Spelling = NO -->
1516
If you prefer video, this [YouTube series by Greg Kamradt](https://youtu.be/_v_fgW2SkkQ?si=8Z2tfAoXnN3lXU9s) works through the LangChain documentation, providing code examples as it goes.
17+
<!-- vale Vale.Spelling = YES -->
1618

1719
n8n offers space to discuss LangChain on the [Discord](https://discord.gg/bAt54txhHg). Join to share your projects and discuss ideas with the community.

Diff for: docs/advanced-ai/langchain/langchain-n8n.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -148,7 +148,7 @@ Available nodes:
148148
* [Recursive Character Text Splitter](/integrations/builtin/cluster-nodes/sub-nodes/n8n-nodes-langchain.textsplitterrecursivecharactertextsplitter.md)
149149
* [Token Splitter](/integrations/builtin/cluster-nodes/sub-nodes/n8n-nodes-langchain.textsplittertokensplitter.md)
150150

151-
n8n's text splitter nodes implements parts of [LangChain's text_splitter API](https://js.langchain.com/docs/concepts/text_splitters/).
151+
n8n's text splitter nodes implements parts of [LangChain's `text_splitter` API](https://js.langchain.com/docs/concepts/text_splitters/).
152152

153153
#### Tools
154154

Diff for: docs/api/overview.md

+2
Original file line numberDiff line numberDiff line change
@@ -26,10 +26,12 @@ n8n provides an [n8n API node](/integrations/builtin/core-nodes/n8n-nodes-base.n
2626

2727
The API documentation assumes you are familiar with REST APIs. If you're not, these resources may be helpful:
2828

29+
<!-- vale from-microsoft.Contractions["What is"] = NO -->
2930
* [KnowledgeOwl's guide to working with APIs](https://support.knowledgeowl.com/help/working-with-apis): a basic introduction, including examples of how to call REST APIs.
3031
* [IBM Cloud Learn Hub - What is an Application Programming Interface (API)](https://www.ibm.com/cloud/learn/api): this gives a general, but technical, introduction to APIs.
3132
* [IBM Cloud Learn Hub - What is a REST API?](https://www.ibm.com/cloud/learn/rest-apis): more detailed information about REST APIs.
3233
* [MDN web docs - An overview of HTTP](https://developer.mozilla.org/en-US/docs/Web/HTTP/Overview): REST APIs work over HTTP and use HTTP verbs, or methods, to specify the action to perform.
34+
<!-- vale from-microsoft.Contractions["What is"] = YES -->
3335

3436
/// tip | Use the API playground (self-hosted n8n only)
3537
Trying out the API in the [playground](/api/using-api-playground.md) can help you understand how APIs work. If you're worried about changing live data, consider setting up a test workflow, or test n8n instance, to explore safely.

Diff for: docs/code/cookbook/builtin/itemmatching.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -79,4 +79,4 @@ The Code node does this using the following code:
7979
return _input.all();
8080
```
8181

82-
You can view and download the example workflow from [n8n website | itemMatchin usage example ](https://n8n.io/workflows/1966-itemmatching-usage-example/).
82+
You can view and download the example workflow from [`itemMatching` usage example | n8n website](https://n8n.io/workflows/1966-itemmatching-usage-example/).

Diff for: docs/code/cookbook/jmespath.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -237,7 +237,7 @@ Get a list of the dogs' ages using [object projections](https://jmespath.org/tut
237237

238238
### Select multiple elements and create a new list or object
239239

240-
Use [Multiselect](https://jmespath.org/tutorial.html#multiselect) to select elements from a JSON object and combine them into a new list or object.
240+
Use [MultiSelect](https://jmespath.org/tutorial.html#multiselect) to select elements from a JSON object and combine them into a new list or object.
241241

242242
Given this JSON from a webhook node:
243243

Diff for: docs/hosting/logging-monitoring/logging.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ contentType: howto
55

66
# Logging in n8n
77

8-
Logging is an important feature for debugging. n8n uses the [winston](https://www.npmjs.com/package/winston) logging library.
8+
Logging is an important feature for debugging. n8n uses the [`winston`](https://www.npmjs.com/package/winston) logging library.
99

1010
/// note | Log streaming
1111
n8n Self-hosted Enterprise tier includes [Log streaming](/log-streaming.md), in addition to the logging options described in this document.

Diff for: docs/integrations/builtin/app-nodes/n8n-nodes-base.awselb.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ This node supports creating and managing application and network load balancers.
3636

3737
## Related resources
3838

39-
Refer to [AWS ELB's documentation](https://docs.aws.amazon.com/elasticloadbalancing/latest/userguide/what-is-load-balancing.html) for more information on this service.
39+
Refer to the [AWS ELB documentation](https://docs.aws.amazon.com/elasticloadbalancing/latest/userguide/what-is-load-balancing.html) for more information on this service.
4040

4141
--8<-- "_snippets/integrations/builtin/app-nodes/operation-not-supported.md"
4242

Diff for: docs/integrations/builtin/app-nodes/n8n-nodes-base.netscaleradc.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ Refer to [Netscaler ADC credentials](/integrations/builtin/credentials/netscaler
3232

3333
## Related resources
3434

35-
Refer to [Netscaler ADC's documentation](https://docs.citrix.com/en-us/citrix-adc/current-release/) for more information about the service.
35+
Refer to the [Netscaler ADC documentation](https://docs.citrix.com/en-us/citrix-adc/current-release/) for more information about the service.
3636

3737
--8<-- "_snippets/integrations/builtin/app-nodes/operation-not-supported.md"
3838

Diff for: docs/integrations/builtin/app-nodes/n8n-nodes-base.telegram/chat-operations.md

+12-12
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ Use these operations to get information about chats, members, administrators, le
1414

1515
## Get Chat
1616

17-
Use this operation to get up to date information about a chat using the Bot API [getChat](https://core.telegram.org/bots/api#getchat) method.
17+
Use this operation to get up to date information about a chat using the Bot API [`getChat`](https://core.telegram.org/bots/api#getchat) method.
1818

1919
Enter these parameters:
2020

@@ -24,11 +24,11 @@ Enter these parameters:
2424
* **Chat ID**: Enter the Chat ID or username of the target channel in the format `@channelusername`.
2525
* To feed a Chat ID directly into this node, use the [Telegram Trigger](/integrations/builtin/trigger-nodes/n8n-nodes-base.telegramtrigger/index.md) node. Refer to [Common Issues | Get the Chat ID](/integrations/builtin/app-nodes/n8n-nodes-base.telegram/common-issues.md#get-the-chat-id) for more information.
2626

27-
Refer to the Telegram Bot API [getChat](https://core.telegram.org/bots/api#getchat) documentation for more information.
27+
Refer to the Telegram Bot API [`getChat`](https://core.telegram.org/bots/api#getchat) documentation for more information.
2828

2929
## Get Administrators
3030

31-
Use this operation to get a list of all administrators in a chat using the Bot API [getChatAdministrators](https://core.telegram.org/bots/api#getchatadministrators) method.
31+
Use this operation to get a list of all administrators in a chat using the Bot API [`getChatAdministrators`](https://core.telegram.org/bots/api#getchatadministrators) method.
3232

3333
Enter these parameters:
3434

@@ -38,11 +38,11 @@ Enter these parameters:
3838
* **Chat ID**: Enter the Chat ID or username of the target channel in the format `@channelusername`.
3939
* To feed a Chat ID directly into this node, use the [Telegram Trigger](/integrations/builtin/trigger-nodes/n8n-nodes-base.telegramtrigger/index.md) node. Refer to [Common Issues | Get the Chat ID](/integrations/builtin/app-nodes/n8n-nodes-base.telegram/common-issues.md#get-the-chat-id) for more information.
4040

41-
Refer to the Telegram Bot API [getChatAdministrators](https://core.telegram.org/bots/api#getchatadministrators) documentation for more information.
41+
Refer to the Telegram Bot API [`getChatAdministrators`](https://core.telegram.org/bots/api#getchatadministrators) documentation for more information.
4242

4343
## Get Chat Member
4444

45-
Use this operation to get the details of a chat member using the Bot API [getChatMember](https://core.telegram.org/bots/api#getchatmember) method.
45+
Use this operation to get the details of a chat member using the Bot API [`getChatMember`](https://core.telegram.org/bots/api#getchatmember) method.
4646

4747
Enter these parameters:
4848

@@ -53,11 +53,11 @@ Enter these parameters:
5353
* To feed a Chat ID directly into this node, use the [Telegram Trigger](/integrations/builtin/trigger-nodes/n8n-nodes-base.telegramtrigger/index.md) node. Refer to [Common Issues | Get the Chat ID](/integrations/builtin/app-nodes/n8n-nodes-base.telegram/common-issues.md#get-the-chat-id) for more information.
5454
* **User ID**: Enter the unique identifier of the user whose information you want to get.
5555

56-
Refer to the Telegram Bot API [getChatMember](https://core.telegram.org/bots/api#getchatmember) documentation for more information.
56+
Refer to the Telegram Bot API [`getChatMember`](https://core.telegram.org/bots/api#getchatmember) documentation for more information.
5757

5858
## Leave Chat
5959

60-
Use this operation to leave a chat using the Bot API [leaveChat](https://core.telegram.org/bots/api#leavechat) method.
60+
Use this operation to leave a chat using the Bot API [`leaveChat`](https://core.telegram.org/bots/api#leavechat) method.
6161

6262
Enter these parameters:
6363

@@ -67,11 +67,11 @@ Enter these parameters:
6767
* **Chat ID**: Enter the Chat ID or username of the channel you wish to leave in the format `@channelusername`.
6868
* To feed a Chat ID directly into this node, use the [Telegram Trigger](/integrations/builtin/trigger-nodes/n8n-nodes-base.telegramtrigger/index.md) node. Refer to [Common Issues | Get the Chat ID](/integrations/builtin/app-nodes/n8n-nodes-base.telegram/common-issues.md#get-the-chat-id) for more information.
6969

70-
Refer to the Telegram Bot API [leaveChat](https://core.telegram.org/bots/api#leavechat) documentation for more information.
70+
Refer to the Telegram Bot API [`leaveChat`](https://core.telegram.org/bots/api#leavechat) documentation for more information.
7171

7272
## Set Description
7373

74-
Use this operation to set the description of a chat using the Bot API [setChatDescription](https://core.telegram.org/bots/api#setchatdescription) method.
74+
Use this operation to set the description of a chat using the Bot API [`setChatDescription`](https://core.telegram.org/bots/api#setchatdescription) method.
7575

7676
Enter these parameters:
7777

@@ -82,11 +82,11 @@ Enter these parameters:
8282
* To feed a Chat ID directly into this node, use the [Telegram Trigger](/integrations/builtin/trigger-nodes/n8n-nodes-base.telegramtrigger/index.md) node. Refer to [Common Issues | Get the Chat ID](/integrations/builtin/app-nodes/n8n-nodes-base.telegram/common-issues.md#get-the-chat-id) for more information.
8383
* **Description**: Enter the new description you'd like to set the chat to use, maximum of 255 characters.
8484

85-
Refer to the Telegram Bot API [setChatDescription](https://core.telegram.org/bots/api#setchatdescription) documentation for more information.
85+
Refer to the Telegram Bot API [`setChatDescription`](https://core.telegram.org/bots/api#setchatdescription) documentation for more information.
8686

8787
## Set Title
8888

89-
Use this operation to set the title of a chat using the Bot API [setChatTitle](https://core.telegram.org/bots/api#setchattitle) method.
89+
Use this operation to set the title of a chat using the Bot API [`setChatTitle`](https://core.telegram.org/bots/api#setchattitle) method.
9090

9191
Enter these parameters:
9292

@@ -97,4 +97,4 @@ Enter these parameters:
9797
* To feed a Chat ID directly into this node, use the [Telegram Trigger](/integrations/builtin/trigger-nodes/n8n-nodes-base.telegramtrigger/index.md) node. Refer to [Common Issues | Get the Chat ID](/integrations/builtin/app-nodes/n8n-nodes-base.telegram/common-issues.md#get-the-chat-id) for more information.
9898
* **Title**: Enter the new title you'd like to set the chat to use, maximum of 255 characters.
9999

100-
Refer to the Telegram Bot API [setChatTitle](https://core.telegram.org/bots/api#setchattitle) documentation for more information.
100+
Refer to the Telegram Bot API [`setChatTitle`](https://core.telegram.org/bots/api#setchattitle) documentation for more information.

Diff for: docs/integrations/builtin/app-nodes/n8n-nodes-base.telegram/file-operations.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ Use this operation to get a file from Telegram. Refer to [Telegram](/integration
1414

1515
## Get File
1616

17-
Use this operation to get a file from Telegram using the Bot API [getFile](https://core.telegram.org/bots/api#getfile) method.
17+
Use this operation to get a file from Telegram using the Bot API [`getFile`](https://core.telegram.org/bots/api#getfile) method.
1818

1919
Enter these parameters:
2020

@@ -24,4 +24,4 @@ Enter these parameters:
2424
* **File ID**: Enter the ID of the file you want to get.
2525
* **Download**: Choose whether you want the node to download the file (turned on) or not (turned off).
2626

27-
Refer to the Telegram Bot API [getFile](https://core.telegram.org/bots/api#getfile) documentation for more information.
27+
Refer to the Telegram Bot API [`getFile`](https://core.telegram.org/bots/api#getfile) documentation for more information.

0 commit comments

Comments
 (0)