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.
2 parents 8fb9313 + cad22d6 commit 18566f4Copy full SHA for 18566f4
src/generics/assoc_items/types.md
@@ -41,7 +41,7 @@ trait Contains {
41
type A;
42
type B;
43
44
- fn contains(&self, &Self::A, &Self::B) -> bool;
+ fn contains(&self, _: &Self::A, _: &Self::B) -> bool;
45
fn first(&self) -> i32;
46
fn last(&self) -> i32;
47
}
src/trait/derive.md
@@ -30,7 +30,7 @@ impl Inches {
30
31
32
33
-// `Seconds`, a tuple struct no additional attributes
+// `Seconds`, a tuple struct with no additional attributes
34
struct Seconds(i32);
35
36
fn main() {
0 commit comments