mirror of
https://github.com/n8n-io/n8n.git
synced 2025-01-23 10:32:17 -08:00
docs: Fix typo in tooltip relating to JMESPath (#7910)
This commit is contained in:
parent
a78729b12f
commit
485a0c73cb
|
@ -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,
|
||||
},
|
||||
],
|
||||
|
|
|
@ -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,
|
||||
};
|
||||
|
||||
|
|
Loading…
Reference in a new issue