@@ -8,7 +8,7 @@ LL | Qux.clone();
8
8
| ^^^^^ method not found in `Qux`
9
9
|
10
10
= help: items from traits can only be used if the trait is implemented and in scope
11
- = note: the trait `Clone` defines an item `clone`, but is explicitely unimplemented
11
+ = note: the trait `Clone` defines an item `clone`, but is explicitly unimplemented
12
12
13
13
error[E0599]: no method named `bar` found for type `u32` in the current scope
14
14
--> $DIR/explicitly-unimplemented-error-message.rs:39:11
@@ -17,7 +17,7 @@ LL | 0_u32.bar();
17
17
| ^^^ method not found in `u32`
18
18
|
19
19
= help: items from traits can only be used if the trait is implemented and in scope
20
- = note: the trait `Bar` defines an item `bar`, but is explicitely unimplemented
20
+ = note: the trait `Bar` defines an item `bar`, but is explicitly unimplemented
21
21
22
22
error[E0599]: no method named `foo` found for struct `Qux` in the current scope
23
23
--> $DIR/explicitly-unimplemented-error-message.rs:44:9
@@ -29,7 +29,7 @@ LL | Qux.foo();
29
29
| ^^^ method not found in `Qux`
30
30
|
31
31
= help: items from traits can only be used if the trait is implemented and in scope
32
- = note: the following traits define an item `foo`, but are explicitely unimplemented:
32
+ = note: the following traits define an item `foo`, but are explicitly unimplemented:
33
33
Foo
34
34
FooBar
35
35
@@ -45,7 +45,7 @@ note: `Foo` defines an item `foo`, perhaps you need to implement it
45
45
|
46
46
LL | trait Foo {
47
47
| ^^^^^^^^^
48
- = note: the trait `FooBar` defines an item `foo`, but is explicitely unimplemented
48
+ = note: the trait `FooBar` defines an item `foo`, but is explicitly unimplemented
49
49
50
50
error: aborting due to 4 previous errors
51
51
0 commit comments