about summary refs log tree commit diff
path: root/src/libstd/select.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/libstd/select.rs')
-rw-r--r--src/libstd/select.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libstd/select.rs b/src/libstd/select.rs
index 01b953051db..cca64244db5 100644
--- a/src/libstd/select.rs
+++ b/src/libstd/select.rs
@@ -108,7 +108,7 @@ pub fn select<A: Select>(ports: &mut [A]) -> uint {
 
 /* FIXME(#5121, #7914) This all should be legal, but rust is not clever enough yet.
 
-impl <'self> Select for &'self mut Select {
+impl <'a> Select for &'a mut Select {
     fn optimistic_check(&mut self) -> bool { self.optimistic_check() }
     fn block_on(&mut self, sched: &mut Scheduler, task: BlockedTask) -> bool {
         self.block_on(sched, task)