about summary refs log tree commit diff
path: root/src/libstd/condition.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/libstd/condition.rs')
-rw-r--r--src/libstd/condition.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/libstd/condition.rs b/src/libstd/condition.rs
index 56d5a859401..03994043dcf 100644
--- a/src/libstd/condition.rs
+++ b/src/libstd/condition.rs
@@ -104,7 +104,7 @@ impl<T, U> Condition<T, U> {
     /// // use `trap`'s inside method to register the handler and then run a
     /// // block of code with the handler registered
     /// ```
-    pub fn trap<'a>(&'a self, h: &'a fn(T) -> U) -> Trap<'a, T, U> {
+    pub fn trap<'a>(&'a self, h: 'a |T| -> U) -> Trap<'a, T, U> {
         let h: Closure = unsafe { ::cast::transmute(h) };
         let prev = local_data::get(self.key, |k| k.map(|x| *x));
         let h = @Handler { handle: h, prev: prev };
@@ -181,7 +181,7 @@ impl<'self, T, U> Trap<'self, T, U> {
     /// };
     /// assert_eq!(result, 7);
     /// ```
-    pub fn inside<V>(&self, inner: &'self fn() -> V) -> V {
+    pub fn inside<V>(&self, inner: 'self || -> V) -> V {
         let _g = Guard { cond: self.cond };
         debug!("Trap: pushing handler to TLS");
         local_data::set(self.cond.key, self.handler);