From c9d6cdcbd9b5ef5219be501be12b6773e2f3bc94 Mon Sep 17 00:00:00 2001 From: Alexander Early Date: Mon, 29 Jun 2015 10:11:30 -0700 Subject: [PATCH] fix alias formatting for wrapSync --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index d3f79df24..015c16622 100644 --- a/README.md +++ b/README.md @@ -1673,7 +1673,7 @@ async.auto({ ### asyncify(func) -*Alias: wrapSync* +__Alias:__ `wrapSync` Take a sync function and make it async, passing its return value to a callback. This is useful for plugging sync functions into a waterfall, series, or other async functions. Any arguments passed to the generated function will be passed to the wrapped function (except for the final callback argument). Errors thrown will be passed to the callback.