Merge pull request #14256 from alexwlchan/fix-error-message

Improve the wording of an error message
This commit is contained in:
Jake Champlin 2017-05-05 17:15:09 -04:00 committed by GitHub
commit 00de514749
1 changed files with 1 additions and 1 deletions

View File

@ -154,7 +154,7 @@ func validateStreamViewType(v interface{}, k string) (ws []string, errors []erro
} }
if !viewTypes[value] { if !viewTypes[value] {
errors = append(errors, fmt.Errorf("%q be a valid DynamoDB StreamViewType", k)) errors = append(errors, fmt.Errorf("%q must be a valid DynamoDB StreamViewType", k))
} }
return return
} }