]> git.immae.eu Git - github/fretlink/terraform-provider-statuscake.git/blobdiff - vendor/github.com/aws/aws-sdk-go/aws/awsutil/equal.go
Upgrade to 0.12
[github/fretlink/terraform-provider-statuscake.git] / vendor / github.com / aws / aws-sdk-go / aws / awsutil / equal.go
index 59fa4a558a9ac9432a5febe06e48315ba5708219..142a7a01c527dbba965270d322f156a66155e94c 100644 (file)
@@ -15,7 +15,7 @@ func DeepEqual(a, b interface{}) bool {
        rb := reflect.Indirect(reflect.ValueOf(b))
 
        if raValid, rbValid := ra.IsValid(), rb.IsValid(); !raValid && !rbValid {
-               // If the elements are both nil, and of the same type the are equal
+               // If the elements are both nil, and of the same type they are equal
                // If they are of different types they are not equal
                return reflect.TypeOf(a) == reflect.TypeOf(b)
        } else if raValid != rbValid {