@@ -8,7 +8,7 @@ LL | type Add = bool; //~ ERROR the name `Add` is defined multiple times
8
8
| ^^^^^^^^^^^^^^^^ `Add` redefined here
9
9
|
10
10
= note: `Add` must be defined only once in the type namespace of this module
11
- help: You can use `as` to change the binding name of the import
11
+ help: you can use `as` to change the binding name of the import
12
12
|
13
13
LL | use std::ops::Add as OtherAdd;
14
14
| ^^^^^^^^^^^^^^^^^^^^^^^^^
@@ -23,7 +23,7 @@ LL | struct Sub { x: f32 } //~ ERROR the name `Sub` is defined multiple times
23
23
| ^^^^^^^^^^ `Sub` redefined here
24
24
|
25
25
= note: `Sub` must be defined only once in the type namespace of this module
26
- help: You can use `as` to change the binding name of the import
26
+ help: you can use `as` to change the binding name of the import
27
27
|
28
28
LL | use std::ops::Sub as OtherSub;
29
29
| ^^^^^^^^^^^^^^^^^^^^^^^^^
@@ -38,7 +38,7 @@ LL | enum Mul { A, B } //~ ERROR the name `Mul` is defined multiple times
38
38
| ^^^^^^^^ `Mul` redefined here
39
39
|
40
40
= note: `Mul` must be defined only once in the type namespace of this module
41
- help: You can use `as` to change the binding name of the import
41
+ help: you can use `as` to change the binding name of the import
42
42
|
43
43
LL | use std::ops::Mul as OtherMul;
44
44
| ^^^^^^^^^^^^^^^^^^^^^^^^^
@@ -53,7 +53,7 @@ LL | mod Div { } //~ ERROR the name `Div` is defined multiple times
53
53
| ^^^^^^^ `Div` redefined here
54
54
|
55
55
= note: `Div` must be defined only once in the type namespace of this module
56
- help: You can use `as` to change the binding name of the import
56
+ help: you can use `as` to change the binding name of the import
57
57
|
58
58
LL | use std::ops::Div as OtherDiv;
59
59
| ^^^^^^^^^^^^^^^^^^^^^^^^^
@@ -68,7 +68,7 @@ LL | trait Rem { } //~ ERROR the name `Rem` is defined multiple times
68
68
| ^^^^^^^^^ `Rem` redefined here
69
69
|
70
70
= note: `Rem` must be defined only once in the type namespace of this module
71
- help: You can use `as` to change the binding name of the import
71
+ help: you can use `as` to change the binding name of the import
72
72
|
73
73
LL | use std::ops::Rem as OtherRem;
74
74
| ^^^^^^^^^^^^^^^^^^^^^^^^^
0 commit comments