File tree 1 file changed +2
-2
lines changed
1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -18,7 +18,7 @@ declare_clippy_lint! {
18
18
/// other solution is to ensure the mutex is unlocked before calling await,
19
19
/// either by introducing a scope or an explicit call to Drop::drop.
20
20
///
21
- /// **Known problems:** None .
21
+ /// **Known problems:** Will report false positive for explicitly dropped guards ([#6446](https://github.com/rust-lang/rust-clippy/issues/6446)) .
22
22
///
23
23
/// **Example:**
24
24
///
@@ -57,7 +57,7 @@ declare_clippy_lint! {
57
57
/// at runtime. Holding onto a `RefCell` ref across an `await` suspension point
58
58
/// risks panics from a mutable ref shared while other refs are outstanding.
59
59
///
60
- /// **Known problems:** None .
60
+ /// **Known problems:** Will report false positive for explicitly dropped refs ([#6353](https://github.com/rust-lang/rust-clippy/issues/6353)) .
61
61
///
62
62
/// **Example:**
63
63
///
You can’t perform that action at this time.
0 commit comments