Skip to content

Commit 52e557a

Browse files
committed
Remove relaxed bounds on methods
1 parent cd4eb4c commit 52e557a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/lib.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1373,10 +1373,10 @@ impl<A, D> ArrayPartsSized<A, D>
13731373
///
13741374
/// trait Ratioable<A> {
13751375
/// fn aspect_ratio(&self) -> (usize, usize)
1376-
/// where Self: AsRef<LayoutRef2<A>> + ?Sized;
1376+
/// where Self: AsRef<LayoutRef2<A>>;
13771377
///
13781378
/// fn cut_to_ratio(&mut self, ratio: (usize, usize))
1379-
/// where Self: AsMut<LayoutRef2<A>> + ?Sized;
1379+
/// where Self: AsMut<LayoutRef2<A>>;
13801380
/// }
13811381
///
13821382
/// impl<T, A> Ratioable<A> for T

0 commit comments

Comments
 (0)