mirror of https://github.com/stretchr/testify.git
assert: fix typos in comments
parent
7f489726a5
commit
2063e81696
|
@ -1327,7 +1327,7 @@ func TestNotElementsMatch(t *testing.T) {
|
|||
actual interface{}
|
||||
result bool
|
||||
}{
|
||||
// not mathing
|
||||
// not matching
|
||||
{[]int{1}, []int{}, true},
|
||||
{[]int{}, []int{2}, true},
|
||||
{[]int{1}, []int{2}, true},
|
||||
|
|
|
@ -15,7 +15,7 @@
|
|||
// import assertYaml "github.com/stretchr/testify/assert/yaml"
|
||||
//
|
||||
// func init() {
|
||||
// assertYaml.Unmarshall = func (in []byte, out interface{}) error {
|
||||
// assertYaml.Unmarshal = func (in []byte, out interface{}) error {
|
||||
// // ...
|
||||
// return nil
|
||||
// }
|
||||
|
|
|
@ -5,7 +5,7 @@
|
|||
//
|
||||
// This package is just an indirection that allows the builder to override the
|
||||
// indirection with an alternative implementation of this package that uses
|
||||
// another implemantation of YAML deserialization. This allows to not either not
|
||||
// another implementation of YAML deserialization. This allows to not either not
|
||||
// use YAML deserialization at all, or to use another implementation than
|
||||
// [gopkg.in/yaml.v3] (for example for license compatibility reasons, see [PR #1120]).
|
||||
//
|
||||
|
|
Loading…
Reference in New Issue