From 2e56fabc2808bfe99d03afee5c4216282f2ea004 Mon Sep 17 00:00:00 2001 From: Mark Bennett Date: Thu, 12 Dec 2019 00:54:46 -0700 Subject: [PATCH] A few more tweaks. --- docs/node-basics.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/node-basics.md b/docs/node-basics.md index 42baca3a6..15bd8e2c7 100644 --- a/docs/node-basics.md +++ b/docs/node-basics.md @@ -60,7 +60,7 @@ Normally it is not needed to write the JavaScript variables manually as they can Parameters can be set for most nodes in n8n. The values that get set define what exactly a node does. -That values which are set are by default static and are always the same no matter what data they process. It is however also possible to set the values dynamically with the help of an Expression. Using Expressions, it is possible to make the parameter value dependent on other factors like the data of flow or parameters of other nodes. +Parameter values are static by default, and are always the same no matter what data the node processes. However, it is possible to set the values dynamically with the help of an Expression. Using Expressions, it is possible to make the parameter value dependent on other factors like the data of flow or parameters of other nodes. More information about it can be found under [Expressions](#expressions).