Skip to content

Commit fbf1a27

Browse files
authored
zig: add missing semicolons (#562)
1 parent cba1b71 commit fbf1a27

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

snippets/zig.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
{
22
"Import": {
33
"prefix": "import",
4-
"body": ["const ${1} = @import(\"${1}\")"],
4+
"body": ["const ${1} = @import(\"${1}\");"],
55
"description": "Importing Libraries"
66
},
77
"CImport": {
88
"prefix": "cimport",
9-
"body": ["const c = @cImport({", " @cDefine(\"${1}\")", "});"],
9+
"body": ["const c = @cImport({", " @cDefine(\"${1}\");", "});"],
1010
"description": "Importing C Header Files"
1111
},
1212
"buildExe": {

0 commit comments

Comments
 (0)