File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -12,10 +12,10 @@ declare_clippy_lint! {
12
12
/// `BtreeSet` rely on either the hash or the order of keys be unchanging,
13
13
/// so having types with interior mutability is a bad idea.
14
14
///
15
- /// **Known problems:** It's correct to use a struct, that contains interior mutability,
16
- /// as a key; when its `Hash` implementation doesn't access any these interior mutable types.
17
- /// However, this lint is unable to recognise it so cause a false positive.
18
- /// `bytes` ctate is a great example of this.
15
+ /// **Known problems:** It's correct to use a struct, that contains interior mutability
16
+ /// as a key, when its `Hash` implementation doesn't access any of the interior mutable types.
17
+ /// However, this lint is unable to recognize this, so it causes a false positive in theses cases .
18
+ /// The `bytes` crate is a great example of this.
19
19
///
20
20
/// **Example:**
21
21
/// ```rust
You can’t perform that action at this time.
0 commit comments