remove trailing dots
This commit is contained in:
parent
996ffcb718
commit
a8830631b9
68 changed files with 129 additions and 129 deletions
|
@ -7,7 +7,7 @@ LL | async fn foo(&self) -> &(T, U);
|
|||
| | the parameter type `U` must be valid for the anonymous lifetime as defined here...
|
||||
| ...so that the reference type `&(T, U)` does not outlive the data it points at
|
||||
|
|
||||
help: consider adding an explicit lifetime bound...
|
||||
help: consider adding an explicit lifetime bound
|
||||
|
|
||||
LL | async fn foo<'a>(&'a self) -> &'a (T, U) where U: 'a;
|
||||
| ++++ ++ ++ +++++++++++
|
||||
|
@ -21,7 +21,7 @@ LL | async fn foo(&self) -> &(T, U);
|
|||
| | the parameter type `T` must be valid for the anonymous lifetime as defined here...
|
||||
| ...so that the reference type `&(T, U)` does not outlive the data it points at
|
||||
|
|
||||
help: consider adding an explicit lifetime bound...
|
||||
help: consider adding an explicit lifetime bound
|
||||
|
|
||||
LL | async fn foo<'a>(&'a self) -> &'a (T, U) where T: 'a;
|
||||
| ++++ ++ ++ +++++++++++
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue