Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion netwatch/src/udp.rs
Original file line number Diff line number Diff line change
Expand Up @@ -170,7 +170,7 @@ impl UdpSocket {
/// limiting packets that are read via `recv` from the address specified in
/// `addr`.
pub fn connect(&self, addr: SocketAddr) -> io::Result<()> {
tracing::info!("connectnig to {}", addr);
tracing::info!("connecting to {}", addr);
let guard = self.socket.read().unwrap();
let (socket_tokio, _state) = guard.try_get_connected()?;

Expand Down
Loading