Skip to content

Commit

Permalink
fix: error is lowercase
Browse files Browse the repository at this point in the history
  • Loading branch information
pulsejet committed Dec 16, 2024
1 parent 209673f commit 2ac1fdf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion face/multicast-udp-transport.go
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ func MakeMulticastUDPTransport(localURI *defn.URI) (*MulticastUDPTransport, erro
func (t *MulticastUDPTransport) connectSend() error {
sendConn, err := t.dialer.Dial(t.remoteURI.Scheme(), t.groupAddr.String())
if err != nil {
return errors.New("Unable to create send connection to group address: " + err.Error())
return errors.New("unable to create send connection to group address: " + err.Error())
}
t.sendConn = sendConn.(*net.UDPConn)
return nil
Expand Down

0 comments on commit 2ac1fdf

Please sign in to comment.