docs: Fix typo in tooltip relating to JMESPath (#7910)

This commit is contained in:
Deborah
2023-12-04 08:19:36 +00:00
committed by GitHub
parent a78729b12f
commit 485a0c73cb
2 changed files with 2 additions and 2 deletions

View File

@@ -119,7 +119,7 @@ export class ToolCode implements INodeType {
// TODO: Add proper text here later
hint: 'You can access the input the tool receives via the input property "query". The returned value should be a single string.',
description:
'Python code to execute.<br><br>Tip: You can use luxon vars like <code>_today</code> for dates and <code>$_mespath</code> for querying JSON structures. <a href="https://docs.n8n.io/nodes/n8n-nodes-base.function">Learn more</a>.',
'Python code to execute.<br><br>Tip: You can use built-in methods and variables like <code>_today</code> for dates and <code>_jmespath</code> for querying JSON structures. <a href="https://docs.n8n.io/code/builtin/">Learn more</a>.',
noDataExpression: true,
},
],

View File

@@ -11,7 +11,7 @@ const commonDescription: INodeProperties = {
},
default: '',
description:
'Python code to execute.<br><br>Tip: You can use luxon vars like <code>_today</code> for dates and <code>$_mespath</code> for querying JSON structures. <a href="https://docs.n8n.io/nodes/n8n-nodes-base.function">Learn more</a>.',
'Python code to execute.<br><br>Tip: You can use built-in methods and variables like <code>_today</code> for dates and <code>_jmespath</code> for querying JSON structures. <a href="https://docs.n8n.io/code/builtin/">Learn more</a>.',
noDataExpression: true,
};