Skip to content

Commit

Permalink
Merge branch 'master' into flatten2
Browse files Browse the repository at this point in the history
  • Loading branch information
antonmedv authored Jul 15, 2024
2 parents 4f0a28b + 5e3d5a2 commit bba1e30
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion internal/spew/internalunsafe_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ func changeKind(v *reflect.Value, readOnly bool) {
*flags |= flagKindMask
}

// TestAddedReflectValue tests functionaly of the dump and formatter code which
// TestAddedReflectValue tests functionality of the dump and formatter code which
// falls back to the standard fmt library for new types that might get added to
// the language.
func TestAddedReflectValue(t *testing.T) {
Expand Down
2 changes: 1 addition & 1 deletion test/operator/operator_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -148,7 +148,7 @@ func TestOperator_FunctionOverTypesPrecedence(t *testing.T) {
expr.Env(env),
expr.Operator("+", "Add"),
expr.Function("Add", func(args ...interface{}) (interface{}, error) {
// Wierd function that returns 100 + a + b in testing purposes.
// Weird function that returns 100 + a + b for testing purposes.
return args[0].(int) + args[1].(int) + 100, nil
},
new(func(_ int, __ int) int),
Expand Down

0 comments on commit bba1e30

Please sign in to comment.