Skip to content

Commit

Permalink
Merge pull request kubernetes#83385 from daxmc99/docstring-change
Browse files Browse the repository at this point in the history
Fix typo in docstring of DeepEqual
  • Loading branch information
k8s-ci-robot authored Nov 8, 2019
2 parents 9cf309e + c5edd45 commit ec273ab
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 ec273ab

Please sign in to comment.