Remove doc using cargo xtask codegen.

This commit is contained in:
Jess Balint 2020-05-22 09:20:43 -05:00
parent 1fae96a8d4
commit 6594235dd8

View File

@ -259,30 +259,6 @@ fn main() {
}
```
## `change_lifetime_anon_to_named`
Change an anonymous lifetime to a named lifetime.
```rust
// BEFORE
impl Cursor<'_<|>> {
fn node(self) -> &SyntaxNode {
match self {
Cursor::Replace(node) | Cursor::Before(node) => node,
}
}
}
// AFTER
impl<'a> Cursor<'a> {
fn node(self) -> &SyntaxNode {
match self {
Cursor::Replace(node) | Cursor::Before(node) => node,
}
}
}
```
## `change_return_type_to_result`
Change the function's return type to Result.