# HG changeset patch # User cin # Date 1423327291 -10800 # Node ID 5fb2bbffdeceb6a4ae0492660dc330218f006cb9 # Parent b5c2d609d71b8c8249a08efad52cf292b295a399 minor fixes diff -r b5c2d609d71b -r 5fb2bbffdece Implab/Safe.cs --- a/Implab/Safe.cs Sat Feb 07 11:06:42 2015 +0300 +++ b/Implab/Safe.cs Sat Feb 07 19:41:31 2015 +0300 @@ -57,7 +57,7 @@ } [DebuggerStepThrough] - public static IPromise InvokePromise(Func action) { + public static IPromise WrapPromise(Func action) { ArgumentNotNull(action, "action"); var p = new Promise(); @@ -71,7 +71,7 @@ } [DebuggerStepThrough] - public static IPromise InvokePromise(Action action) { + public static IPromise WrapPromise(Action action) { ArgumentNotNull(action, "action"); var p = new Promise();