aboutsummaryrefslogtreecommitdiff
path: root/net/src/endpoint.rs
diff options
context:
space:
mode:
Diffstat (limited to 'net/src/endpoint.rs')
-rw-r--r--net/src/endpoint.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/net/src/endpoint.rs b/net/src/endpoint.rs
index 1a1f975..fdb2735 100644
--- a/net/src/endpoint.rs
+++ b/net/src/endpoint.rs
@@ -13,14 +13,14 @@ use crate::{Error, Result};
/// Port defined as a u16.
pub type Port = u16;
-/// Endpoint defines generic network endpoints for karyons.
+/// Endpoint defines generic network endpoints for karyon.
///
/// # Example
///
/// ```
/// use std::net::SocketAddr;
///
-/// use karyons_net::Endpoint;
+/// use karyon_net::Endpoint;
///
/// let endpoint: Endpoint = "tcp://127.0.0.1:3000".parse().unwrap();
///