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 f877f54 commit 683c557Copy full SHA for 683c557
clippy_lints/src/types/mod.rs
@@ -257,7 +257,7 @@ declare_clippy_lint! {
257
/// **Why is this bad?** `Rc` is used in single thread and `Mutex` is used in multi thread.
258
/// Consider using `Rc<RefCell<T>>` in single thread or `Arc<Mutex<T>>` in multi thread.
259
///
260
- /// **Known problems:** None.
+ /// **Known problems:** Maybe false positive on trait generic.
261
262
/// **Example:**
263
/// ```rust,ignore
0 commit comments