update CHANGELOG

This commit is contained in:
Mitchell Hashimoto 2015-01-14 09:29:37 -08:00
parent 577e2420b0
commit 5e8b300ca1
2 changed files with 3 additions and 1 deletions

View File

@ -7,6 +7,8 @@ IMPROVEMENTS:
BUG FIXES:
* core: Fixing use of remote state with plan files. [GH-741]
* core: Fix a panic case when certain invalid types were used in
the configuration. [GH-691]
PLUGIN CHANGES:

View File

@ -915,7 +915,7 @@ func (m schemaMap) validateList(
rawV := reflect.ValueOf(raw)
if rawV.Kind() != reflect.Slice {
return nil, []error{fmt.Errorf(
"%s: should be an array", k)}
"%s: should be a list", k)}
}
// Now build the []interface{}