Skip to content

Commit

Permalink
fix struct field by using InstanceId
Browse files Browse the repository at this point in the history
  • Loading branch information
dafyddcrosby committed Aug 20, 2015
1 parent 77b2bb7 commit 282411b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ func main() {
for idx, res := range resp.Reservations {
fmt.Println(" > Number of instances: ", len(res.Instances))
for _, inst := range resp.Reservations[idx].Instances {
fmt.Println(" - Instance ID: ", *inst.InstanceID)
fmt.Println(" - Instance ID: ", *inst.InstanceId)
}
}
}
Expand Down

0 comments on commit 282411b

Please sign in to comment.