Merge pull request #263 from NorbertHauriel/patch-1

fix(typo): Error text in DialAndSendWithContext
This commit is contained in:
Winni Neessen 2024-07-24 13:35:33 +02:00 committed by GitHub
commit 07bd2d167e
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -683,7 +683,7 @@ func (c *Client) DialAndSendWithContext(ctx context.Context, messages ...*Msg) e
return fmt.Errorf("send failed: %w", err)
}
if err := c.Close(); err != nil {
return fmt.Errorf("failed to close connction: %w", err)
return fmt.Errorf("failed to close connection: %w", err)
}
return nil
}