whitespace fixes

This commit is contained in:
James Bardin 2016-07-27 12:08:59 -04:00
parent 8038e60a20
commit b4b70193d2
2 changed files with 3 additions and 4 deletions

View File

@ -12,7 +12,6 @@ import (
// This will only work operate on []interface{}, map[string]interface{}, and
// primitive types.
func encodeHCL(i interface{}) ([]byte, error) {
state := &encodeState{}
err := state.encode(i)
if err != nil {

View File

@ -6,9 +6,9 @@ variable "baz" {
type = "map"
default = {
"A" = "a"
"B" = "b"
interp = "${file("t.txt")}"
"A" = "a"
"B" = "b"
interp = "${file("t.txt")}"
}
}