Skip to content

Commit 95f288c

Browse files
owainlewisprydie
authored andcommitted
Fix minor typo in load_balancer.go (#197)
1 parent a141099 commit 95f288c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

pkg/oci/load_balancer.go

+2-2
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,7 @@ func (cp *CloudProvider) GetLoadBalancer(ctx context.Context, clusterName string
101101
return lbStatus, (err == nil), err
102102
}
103103

104-
// getSubnets returns a list of Subnet objects for the corrosponding OCIDs.
104+
// getSubnets returns a list of Subnet objects for the corresponding OCIDs.
105105
func getSubnets(ctx context.Context, subnetIDs []string, n client.NetworkingInterface) ([]*core.Subnet, error) {
106106
subnets := make([]*core.Subnet, len(subnetIDs))
107107
for i, id := range subnetIDs {
@@ -484,7 +484,7 @@ func (cp *CloudProvider) UpdateLoadBalancer(ctx context.Context, clusterName str
484484
return err
485485
}
486486

487-
// getNodesByIPs returns a slice of Nodes corrosponding to the given IP addresses.
487+
// getNodesByIPs returns a slice of Nodes corresponding to the given IP addresses.
488488
func (cp *CloudProvider) getNodesByIPs(backendIPs []string) ([]*v1.Node, error) {
489489
nodeList, err := cp.NodeLister.List(labels.Everything())
490490
if err != nil {

0 commit comments

Comments
 (0)