2
0
Fork 1
mirror of https://github.com/async-rs/async-std.git synced 2025-04-08 17:36:43 +00:00

Fixing inaccurate function description in udp::recv

This commit is contained in:
Katharina Fey 2019-12-27 03:06:41 +01:00
parent fee3b6f603
commit 081166f204
No known key found for this signature in database
GPG key ID: F972AEEA2887D547

View file

@ -288,7 +288,7 @@ impl UdpSocket {
/// Receives data from the socket. /// Receives data from the socket.
/// ///
/// On success, returns the number of bytes read and the origin. /// On success, returns the number of bytes read.
/// ///
/// # Examples /// # Examples
/// ///