Skip to content

Commit

Permalink
Fix typo in docstring of DeepEqual
Browse files Browse the repository at this point in the history
Change "imformative" to informative
  • Loading branch information
daxmc99 committed Oct 2, 2019
1 parent 8b611ac commit c5edd45
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion third_party/forked/golang/reflect/deep_equal.go
Original file line number Diff line number Diff line change
Expand Up @@ -229,7 +229,7 @@ func (e Equalities) deepValueEqual(v1, v2 reflect.Value, visited map[visit]bool,
//
// An empty slice *is* equal to a nil slice for our purposes; same for maps.
//
// Unexported field members cannot be compared and will cause an imformative panic; you must add an Equality
// Unexported field members cannot be compared and will cause an informative panic; you must add an Equality
// function for these types.
func (e Equalities) DeepEqual(a1, a2 interface{}) bool {
if a1 == nil || a2 == nil {
Expand Down

0 comments on commit c5edd45

Please sign in to comment.