diff options
| -rw-r--r-- | clippy_lints/src/trait_bounds.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/clippy_lints/src/trait_bounds.rs b/clippy_lints/src/trait_bounds.rs index 2cf3529bd1b..78e27b775fb 100644 --- a/clippy_lints/src/trait_bounds.rs +++ b/clippy_lints/src/trait_bounds.rs @@ -230,7 +230,7 @@ impl<'tcx> LateLintPass<'tcx> for TraitBounds { impl TraitBounds { /// Is the given bound a `?Sized` bound, and is combining it (i.e. `T: X + ?Sized`) an error on - /// 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. fn cannot_combine_maybe_bound(&self, cx: &LateContext<'_>, bound: &GenericBound<'_>) -> bool { if !self.msrv.meets(msrvs::COMBINED_MAYBE_BOUND) && let GenericBound::Trait(tr, TraitBoundModifier::Maybe) = bound |
