@@ -54,7 +54,7 @@ help: instead, you are more likely to want to change the argument to be borrowed
54
54
|
55
55
LL | fn i(_x: &isize) -> &isize {
56
56
| +
57
- help: ...or alternatively, to want to return an owned value
57
+ help: ...or alternatively, you might want to return an owned value
58
58
|
59
59
LL - fn i(_x: isize) -> &isize {
60
60
LL + fn i(_x: isize) -> isize {
@@ -75,7 +75,7 @@ help: instead, you are more likely to want to change the argument to be borrowed
75
75
|
76
76
LL | fn j(_x: &StaticStr) -> &isize {
77
77
| +
78
- help: ...or alternatively, to want to return an owned value
78
+ help: ...or alternatively, you might want to return an owned value
79
79
|
80
80
LL - fn j(_x: StaticStr) -> &isize {
81
81
LL + fn j(_x: StaticStr) -> isize {
@@ -96,7 +96,7 @@ help: instead, you are more likely to want to change the argument to be borrowed
96
96
|
97
97
LL | fn k<'a, T: WithLifetime<'a>>(_x: &T::Output) -> &isize {
98
98
| +
99
- help: ...or alternatively, to want to return an owned value
99
+ help: ...or alternatively, you might want to return an owned value
100
100
|
101
101
LL - fn k<'a, T: WithLifetime<'a>>(_x: T::Output) -> &isize {
102
102
LL + fn k<'a, T: WithLifetime<'a>>(_x: T::Output) -> isize {
@@ -117,7 +117,7 @@ help: instead, you are more likely to want to change one of the arguments to be
117
117
|
118
118
LL | fn l<'a>(_: &&'a str, _: &&'a str) -> &str { "" }
119
119
| + +
120
- help: ...or alternatively, to want to return an owned value
120
+ help: ...or alternatively, you might want to return an owned value
121
121
|
122
122
LL | fn l<'a>(_: &'a str, _: &'a str) -> String { "" }
123
123
| ~~~~~~
0 commit comments