File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
library/std/src/sys/unix/ext Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -667,7 +667,7 @@ impl UnixStream {
667667 /// Ok(())
668668 /// }
669669 /// ```
670- #[ unstable( feature = "unix_socket_peek" , issue = "none " ) ]
670+ #[ unstable( feature = "unix_socket_peek" , issue = "76923 " ) ]
671671 pub fn peek ( & self , buf : & mut [ u8 ] ) -> io:: Result < usize > {
672672 self . 0 . peek ( buf)
673673 }
@@ -1708,7 +1708,7 @@ impl UnixDatagram {
17081708 /// Ok(())
17091709 /// }
17101710 /// ```
1711- #[ unstable( feature = "unix_socket_peek" , issue = "none " ) ]
1711+ #[ unstable( feature = "unix_socket_peek" , issue = "76923 " ) ]
17121712 pub fn peek ( & self , buf : & mut [ u8 ] ) -> io:: Result < usize > {
17131713 self . 0 . peek ( buf)
17141714 }
@@ -1740,7 +1740,7 @@ impl UnixDatagram {
17401740 /// Ok(())
17411741 /// }
17421742 /// ```
1743- #[ unstable( feature = "unix_socket_peek" , issue = "none " ) ]
1743+ #[ unstable( feature = "unix_socket_peek" , issue = "76923 " ) ]
17441744 pub fn peek_from ( & self , buf : & mut [ u8 ] ) -> io:: Result < ( usize , SocketAddr ) > {
17451745 self . recv_from_flags ( buf, libc:: MSG_PEEK )
17461746 }
You can’t perform that action at this time.
0 commit comments