Fix receive typo (#12881)
This commit is contained in:
parent
19474ddb18
commit
073fa873ac
|
@ -72,7 +72,7 @@ func testAccCheckAWSAutocalingAttachmentExists(asgname string, loadBalancerCount
|
|||
})
|
||||
|
||||
if err != nil {
|
||||
return fmt.Errorf("Recieved an error when attempting to load %s: %s", asg, err)
|
||||
return fmt.Errorf("Received an error when attempting to load %s: %s", asg, err)
|
||||
}
|
||||
|
||||
if loadBalancerCount != len(actual.AutoScalingGroups[0].LoadBalancerNames) {
|
||||
|
|
|
@ -2002,7 +2002,7 @@ func TestInterpolateFuncTimestamp(t *testing.T) {
|
|||
}
|
||||
|
||||
if resultTime.Sub(currentTime).Seconds() > 10.0 {
|
||||
t.Fatalf("Timestamp Diff too large. Expected: %s\nRecieved: %s", currentTime.Format(time.RFC3339), result.Value.(string))
|
||||
t.Fatalf("Timestamp Diff too large. Expected: %s\nReceived: %s", currentTime.Format(time.RFC3339), result.Value.(string))
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
@ -585,7 +585,7 @@ func (s *State) CompareAges(other *State) (StateAgeComparison, error) {
|
|||
}
|
||||
|
||||
// SameLineage returns true only if the state given in argument belongs
|
||||
// to the same "lineage" of states as the reciever.
|
||||
// to the same "lineage" of states as the receiver.
|
||||
func (s *State) SameLineage(other *State) bool {
|
||||
s.Lock()
|
||||
defer s.Unlock()
|
||||
|
|
|
@ -75,7 +75,7 @@ The following arguments are supported:
|
|||
arguments containing spaces.
|
||||
|
||||
* `query` - (Optional) A map of string values to pass to the external program
|
||||
as the query arguments. If not supplied, the program will recieve an empty
|
||||
as the query arguments. If not supplied, the program will receive an empty
|
||||
object as its input.
|
||||
|
||||
## Attributes Reference
|
||||
|
|
Loading…
Reference in New Issue