Fix comment typos.

This commit is contained in:
Trevor Pounds 2015-04-24 10:24:59 -07:00
parent 1ef9731a2f
commit fe62312617
5 changed files with 5 additions and 5 deletions

View File

@ -182,7 +182,7 @@ func resourceAwsRouteTableUpdate(d *schema.ResourceData, meta interface{}) error
routes := o.(*schema.Set).Intersection(n.(*schema.Set))
d.Set("route", routes)
// Then loop through al the newly configured routes and create them
// Then loop through all the newly configured routes and create them
for _, route := range nrs.List() {
m := route.(map[string]interface{})

View File

@ -360,7 +360,7 @@ func resourceCloudStackEgressFirewallUpdate(d *schema.ResourceData, meta interfa
rules := o.(*schema.Set).Intersection(n.(*schema.Set))
d.Set("rule", rules)
// Then loop through al the currently configured rules and create the new ones
// Then loop through all the currently configured rules and create the new ones
for _, rule := range nrs.List() {
// When succesfully deleted, re-create it again if it still exists
err := resourceCloudStackEgressFirewallCreateRule(

View File

@ -360,7 +360,7 @@ func resourceCloudStackFirewallUpdate(d *schema.ResourceData, meta interface{})
rules := o.(*schema.Set).Intersection(n.(*schema.Set))
d.Set("rule", rules)
// Then loop through al the currently configured rules and create the new ones
// Then loop through all the currently configured rules and create the new ones
for _, rule := range nrs.List() {
// When succesfully deleted, re-create it again if it still exists
err := resourceCloudStackFirewallCreateRule(

View File

@ -377,7 +377,7 @@ func resourceCloudStackNetworkACLRuleUpdate(d *schema.ResourceData, meta interfa
rules := o.(*schema.Set).Intersection(n.(*schema.Set))
d.Set("rule", rules)
// Then loop through al the currently configured rules and create the new ones
// Then loop through all the currently configured rules and create the new ones
for _, rule := range nrs.List() {
// When succesfully deleted, re-create it again if it still exists
err := resourceCloudStackNetworkACLRuleCreateRule(d, meta, rule.(map[string]interface{}))

View File

@ -263,7 +263,7 @@ func resourceCloudStackPortForwardUpdate(d *schema.ResourceData, meta interface{
forwards := o.(*schema.Set).Intersection(n.(*schema.Set))
d.Set("forward", forwards)
// Then loop through al the currently configured forwards and create the new ones
// Then loop through all the currently configured forwards and create the new ones
for _, forward := range nrs.List() {
err := resourceCloudStackPortForwardCreateForward(
d, meta, forward.(map[string]interface{}))