# HG changeset patch # User cin # Date 2015-02-07 16:41:31 # Node ID 5fb2bbffdeceb6a4ae0492660dc330218f006cb9 # Parent b5c2d609d71b8c8249a08efad52cf292b295a399 minor fixes diff --git a/Implab/Safe.cs b/Implab/Safe.cs --- a/Implab/Safe.cs +++ b/Implab/Safe.cs @@ -57,7 +57,7 @@ namespace Implab } [DebuggerStepThrough] - public static IPromise InvokePromise(Func action) { + public static IPromise WrapPromise(Func action) { ArgumentNotNull(action, "action"); var p = new Promise(); @@ -71,7 +71,7 @@ namespace Implab } [DebuggerStepThrough] - public static IPromise InvokePromise(Action action) { + public static IPromise WrapPromise(Action action) { ArgumentNotNull(action, "action"); var p = new Promise();