We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 87c28b9 commit 765a6e4Copy full SHA for 765a6e4
clippy_lints/src/trait_bounds.rs
@@ -230,7 +230,7 @@ impl<'tcx> LateLintPass<'tcx> for TraitBounds {
230
231
impl TraitBounds {
232
/// Is the given bound a `?Sized` bound, and is combining it (i.e. `T: X + ?Sized`) an error on
233
- /// this MSRV? See https://github.com/rust-lang/rust-clippy/issues/8772 for details.
+ /// this MSRV? See <https://github.com/rust-lang/rust-clippy/issues/8772> for details.
234
fn cannot_combine_maybe_bound(&self, cx: &LateContext<'_>, bound: &GenericBound<'_>) -> bool {
235
if !self.msrv.meets(msrvs::COMBINED_MAYBE_BOUND)
236
&& let GenericBound::Trait(tr, TraitBoundModifier::Maybe) = bound
0 commit comments