aboutsummaryrefslogtreecommitdiff
path: root/net/src/connection.rs
diff options
context:
space:
mode:
authorhozan23 <hozan23@proton.me>2023-11-23 00:13:27 +0300
committerhozan23 <hozan23@proton.me>2023-11-23 00:13:27 +0300
commitca2a5f8bbb6983d9555abd10eaaf86950b794957 (patch)
treed841bbf1b7ef3a816dc75ac59bd81eceac350c63 /net/src/connection.rs
parentf1b78d53d7d0009fdef8f0e220bc0c421288c514 (diff)
update README.md
Diffstat (limited to 'net/src/connection.rs')
-rw-r--r--net/src/connection.rs4
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