From e1bf05c9e28020c4d3bd8f2622df8a80982ff67f Mon Sep 17 00:00:00 2001 From: Rahul Yadav Date: Mon, 22 Apr 2024 20:20:42 +0530 Subject: [PATCH] Fix incorrect map snippets for Tact Resolves #16 --- src/assets/ton/tact/snippets.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/assets/ton/tact/snippets.ts b/src/assets/ton/tact/snippets.ts index 47c77b4..48529e2 100644 --- a/src/assets/ton/tact/snippets.ts +++ b/src/assets/ton/tact/snippets.ts @@ -31,7 +31,7 @@ export const tactSnippets = [ }, { label: 'map', - code: 'map[${1:type1}]${2:type2};', + code: 'map<${1:type1}, ${2:type2}>;', description: 'mapping declaration', }, {