}{
{"a, b", ", ", []string{"a", "b"}},
{"a & b & c", " & ", []string{"a", "b", "c"}},
- {"http://exmaple.com", "http://", []string{"", "exmaple.com"}},
+ {"http://example.com", "http://", []string{"", "example.com"}},
{123, "2", []string{"1", "3"}},
{tstNoStringer{}, ",", false},
} {
func (x TstX) MethodReturnNothing() {}
func (x TstX) MethodReturnErrorOnly() error {
- return errors.New("something error occured")
+ return errors.New("some error occurred")
}
func (x TstX) MethodReturnTwoValues() (string, string) {
}
func (x TstX) MethodReturnValueWithError() (string, error) {
- return "", errors.New("something error occured")
+ return "", errors.New("some error occurred")
}
func (x TstX) String() string {