]> git.lizzy.rs Git - rust.git/blobdiff - clippy_lints/src/trait_bounds.rs
Auto merge of #6278 - ThibsG:DerefAddrOf, r=llogiq
[rust.git] / clippy_lints / src / trait_bounds.rs
index 06631f89f27ddf5633f80b62ca095547c1c55bf7..d4acf8df46d8a5323d64613c38de7ef7abbb8dd1 100644 (file)
@@ -50,7 +50,7 @@
     /// fn func<T: Clone + Default>(arg: T) {}
     /// ```
     /// or
-    ///  ///
+    ///
     /// ```rust
     /// fn func<T>(arg: T) where T: Clone + Default {}
     /// ```