2
0
Fork 1
mirror of https://github.com/async-rs/async-std.git synced 2025-03-01 07:39:40 +00:00

Merge pull request #648 from spacekookie/master

Fixing inaccurate function description in udp::recv
This commit is contained in:
Yoshua Wuyts 2020-01-07 14:23:14 +01:00 committed by GitHub
commit e2bb79c207
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

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
/// ///