Skip to content

Commit 765a6e4

Browse files
committed
put issue link between <>
1 parent 87c28b9 commit 765a6e4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

clippy_lints/src/trait_bounds.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -230,7 +230,7 @@ impl<'tcx> LateLintPass<'tcx> for TraitBounds {
230230

231231
impl TraitBounds {
232232
/// 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.
233+
/// this MSRV? See <https://github.com/rust-lang/rust-clippy/issues/8772> for details.
234234
fn cannot_combine_maybe_bound(&self, cx: &LateContext<'_>, bound: &GenericBound<'_>) -> bool {
235235
if !self.msrv.meets(msrvs::COMBINED_MAYBE_BOUND)
236236
&& let GenericBound::Trait(tr, TraitBoundModifier::Maybe) = bound

0 commit comments

Comments
 (0)