Skip to content

Commit

Permalink
remove quotes around variable type
Browse files Browse the repository at this point in the history
  • Loading branch information
notnmeyer committed Jul 9, 2020
1 parent 64208ea commit d476ec0
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion snippets/variable_empty.sublime-snippet
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<snippet>
<content><![CDATA[
variable "${1:name}" {
type = "string"
type = string
${2:description = "${3:describe your variable}"}
}
]]></content>
Expand Down
2 changes: 1 addition & 1 deletion snippets/variable_map.sublime-snippet
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<snippet>
<content><![CDATA[
variable "${1:name}" {
type = "map"
type = map
${2:description = "${3:describe your variable}"}
default = {
${4:key1} = "${5:val1}"
Expand Down
2 changes: 1 addition & 1 deletion snippets/variable_string.sublime-snippet
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<snippet>
<content><![CDATA[
variable "${1:name}" {
type = "string"
type = string
${2:description = "${3:describe your variable}"}
default = "${4:default_value}"
}
Expand Down

0 comments on commit d476ec0

Please sign in to comment.