Skip to content

Commit

Permalink
Reformat some comments.
Browse files Browse the repository at this point in the history
  • Loading branch information
sunfishcode committed Jun 1, 2021
1 parent 8b26c3f commit 60bda42
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/traits.rs
Original file line number Diff line number Diff line change
Expand Up @@ -80,8 +80,8 @@ pub trait FromOwnedHandle {
/// Constructs a new instance of `Self` from the given handle.
fn from_owned_handle(owned: OwnedHandle) -> Self;

/// Constructs a new instance of `Self` from the given handle
/// converted from `into_owned`.
/// Constructs a new instance of `Self` from the given handle converted
/// from `into_owned`.
#[inline]
fn from_into_owned_handle<Owned: IntoOwnedHandle>(into_owned: Owned) -> Self
where
Expand All @@ -97,8 +97,8 @@ pub trait FromOwnedSocket {
/// Constructs a new instance of `Self` from the given socket.
fn from_owned_socket(owned: OwnedSocket) -> Self;

/// Constructs a new instance of `Self` from the given socket
/// converted from `into_owned`.
/// Constructs a new instance of `Self` from the given socket converted
/// from `into_owned`.
#[inline]
fn from_into_owned_socket<Owned: IntoOwnedSocket>(into_owned: Owned) -> Self
where
Expand Down

0 comments on commit 60bda42

Please sign in to comment.