From bae06dbd8e8e8ebaacf965191bbdd346bd88dcf7 Mon Sep 17 00:00:00 2001 From: "Namhyeon, Go" Date: Tue, 6 Aug 2024 21:39:07 +0900 Subject: [PATCH] Updated AsyncFunction (markdown) --- AsyncFunction.md | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/AsyncFunction.md b/AsyncFunction.md index 5feb3f7..9a16523 100644 --- a/AsyncFunction.md +++ b/AsyncFunction.md @@ -39,8 +39,10 @@ var sub_01 = new AsyncFunction(function(args) { }); function main(args) { - AsyncFunction.Initialize(exports, args); // if this is completed, stop with `AsyncFunction.Resolved` exception + // If this is completed, stop with an AsyncFunction.Resolved exception. + AsyncFunction.Initialize(exports, args); + // If it does not try to call an async function. onShoutcut(args); }