@@ -54,7 +54,7 @@ help: instead, you are more likely to want to change the argument to be borrowed
5454 |
5555LL | fn i(_x: &isize) -> &isize {
5656 | +
57- help: ...or alternatively, to want to return an owned value
57+ help: ...or alternatively, you might want to return an owned value
5858 |
5959LL - fn i(_x: isize) -> &isize {
6060LL + fn i(_x: isize) -> isize {
@@ -75,7 +75,7 @@ help: instead, you are more likely to want to change the argument to be borrowed
7575 |
7676LL | fn j(_x: &StaticStr) -> &isize {
7777 | +
78- help: ...or alternatively, to want to return an owned value
78+ help: ...or alternatively, you might want to return an owned value
7979 |
8080LL - fn j(_x: StaticStr) -> &isize {
8181LL + fn j(_x: StaticStr) -> isize {
@@ -96,7 +96,7 @@ help: instead, you are more likely to want to change the argument to be borrowed
9696 |
9797LL | fn k<'a, T: WithLifetime<'a>>(_x: &T::Output) -> &isize {
9898 | +
99- help: ...or alternatively, to want to return an owned value
99+ help: ...or alternatively, you might want to return an owned value
100100 |
101101LL - fn k<'a, T: WithLifetime<'a>>(_x: T::Output) -> &isize {
102102LL + 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
117117 |
118118LL | fn l<'a>(_: &&'a str, _: &&'a str) -> &str { "" }
119119 | + +
120- help: ...or alternatively, to want to return an owned value
120+ help: ...or alternatively, you might want to return an owned value
121121 |
122122LL | fn l<'a>(_: &'a str, _: &'a str) -> String { "" }
123123 | ~~~~~~
0 commit comments