diff options
author | hozan23 <hozan23@proton.me> | 2023-11-23 00:13:27 +0300 |
---|---|---|
committer | hozan23 <hozan23@proton.me> | 2023-11-23 00:13:27 +0300 |
commit | ca2a5f8bbb6983d9555abd10eaaf86950b794957 (patch) | |
tree | d841bbf1b7ef3a816dc75ac59bd81eceac350c63 /net | |
parent | f1b78d53d7d0009fdef8f0e220bc0c421288c514 (diff) |
update README.md
Diffstat (limited to 'net')
-rw-r--r-- | net/src/connection.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/net/src/connection.rs b/net/src/connection.rs index 950f171..d8ec0a3 100644 --- a/net/src/connection.rs +++ b/net/src/connection.rs @@ -9,8 +9,8 @@ pub type Conn = Box<dyn Connection>; /// Connection is a generic network connection interface for /// [`udp::UdpConn`], [`tcp::TcpConn`], and [`unix::UnixConn`]. /// -/// If you are familiar with the Go language, this is similar to the -/// [Conn](https://pkg.go.dev/net#Conn) interface +/// If you are familiar with the Go language, this is similar to the +/// [Conn](https://pkg.go.dev/net#Conn) interface #[async_trait] pub trait Connection: Send + Sync { /// Returns the remote peer endpoint of this connection |