Skip to content

Commit

Permalink
More rewording
Browse files Browse the repository at this point in the history
  • Loading branch information
ratmice committed Feb 8, 2024
1 parent a9565a2 commit 4684dac
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/common.rs
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,9 @@

mod sealed {
/// A [sealed trait](https://predr.ag/blog/definitive-guide-to-sealed-traits-in-rust/)
/// which stops this trait from being derived outside the library. This could be relaxed
/// in the future if there is are good reasons to allow external impls. The benefit
/// gained from being sealed is that we can add methods without breaking downstream
/// which stops [super::FloatFuncs] from being implemented outside kurbo. This could
/// be relaxed in the future if there is are good reasons to allow external impls.
/// The benefit from being sealed is that we can add methods without breaking downstream
/// implementations.
pub trait FloatFuncsSealed {}
}
Expand Down

0 comments on commit 4684dac

Please sign in to comment.