Skip to content

Commit

Permalink
Fix bug in property naming
Browse files Browse the repository at this point in the history
  • Loading branch information
stilvoid committed Jul 2, 2019
1 parent 2c0af1d commit 0d43bbd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion format/order.go
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ func ordering(path []interface{}) []string {
"NotResource",
"Condition",
}
case len(path) > 2 && path[0] == "Resources" && path[1] == "Properties":
case len(path) > 3 && path[0] == "Resources" && path[2] == "Properties":
return []string{
"Name",
"Description",
Expand Down

0 comments on commit 0d43bbd

Please sign in to comment.