From 5c61b388db9d972454a5bc2ca99793e18b795c81 Mon Sep 17 00:00:00 2001 From: Robin Stocker Date: Mon, 14 Jul 2014 11:20:25 +1000 Subject: [PATCH] Fix "&mut sef" typo in RFC 39 Lifetime Elision --- active/0039-lifetime-elision.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/active/0039-lifetime-elision.md b/active/0039-lifetime-elision.md index 041f958abc4..213c4d40478 100644 --- a/active/0039-lifetime-elision.md +++ b/active/0039-lifetime-elision.md @@ -112,7 +112,7 @@ Lifetime positions can appear as either "input" or "output": is assigned to _all_ elided output lifetimes. * If there are multiple input lifetime positions, but one of them is `&self` or - `&mut sef`, the lifetime of `self` is assigned to _all_ elided output lifetimes. + `&mut self`, the lifetime of `self` is assigned to _all_ elided output lifetimes. * Otherwise, it is an error to elide an output lifetime.