Add a line between impl and struct

This commit is contained in:
Tim Kuehn
2016-03-16 20:46:23 -07:00
parent 6a6832cfbc
commit f33cb3bd53

View File

@@ -47,6 +47,7 @@ impl super::Stream for TcpStream {
/// Connects to a socket address.
pub struct TcpDialer<A = SocketAddr>(pub A) where A: ToSocketAddrs;
impl<A> super::Dialer for TcpDialer<A>
where A: ToSocketAddrs
{