Skip to content

Commit d476ec0

Browse files
committed
remove quotes around variable type
1 parent 64208ea commit d476ec0

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

snippets/variable_empty.sublime-snippet

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<snippet>
22
<content><![CDATA[
33
variable "${1:name}" {
4-
type = "string"
4+
type = string
55
${2:description = "${3:describe your variable}"}
66
}
77
]]></content>

snippets/variable_map.sublime-snippet

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<snippet>
22
<content><![CDATA[
33
variable "${1:name}" {
4-
type = "map"
4+
type = map
55
${2:description = "${3:describe your variable}"}
66
default = {
77
${4:key1} = "${5:val1}"

snippets/variable_string.sublime-snippet

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<snippet>
22
<content><![CDATA[
33
variable "${1:name}" {
4-
type = "string"
4+
type = string
55
${2:description = "${3:describe your variable}"}
66
default = "${4:default_value}"
77
}

0 commit comments

Comments
 (0)