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! {
1212 /// `BtreeSet` rely on either the hash or the order of keys be unchanging,
1313 /// so having types with interior mutability is a bad idea.
1414 ///
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.
1919 ///
2020 /// **Example:**
2121 /// ```rust
You can’t perform that action at this time.
0 commit comments