From 142b404a91600dc63832bf075f16f90f78be0010 Mon Sep 17 00:00:00 2001 From: Adria Navarro Date: Mon, 22 Jan 2024 12:18:47 +0100 Subject: [PATCH] Array instead of string --- packages/string-templates/manifest.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/string-templates/manifest.json b/packages/string-templates/manifest.json index 008c537abc..9dd8260350 100644 --- a/packages/string-templates/manifest.json +++ b/packages/string-templates/manifest.json @@ -126,7 +126,7 @@ "array" ], "numArgs": 1, - "example": "{{ sum '[1, 2, 3]' }} -> 6", + "example": "{{ sum [1, 2, 3] }} -> 6", "description": "

Returns the sum of all numbers in the given array.

\n" } },