From bce3e8dd87b599418eb2f3a5653b604cd108ad31 Mon Sep 17 00:00:00 2001 From: Adnan Tahir Date: Tue, 23 Jul 2024 11:30:21 +0300 Subject: [PATCH] fix: add missing closing parenthesis in async option description The async option description in the documentation was missing a closing parenthesis. This commit adds the closing parenthesis to correctly complete the sentence. --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 6daf40c9..d0f4d366 100644 --- a/README.md +++ b/README.md @@ -106,7 +106,7 @@ You should never give end-users unfettered access to the EJS render method, If y - `outputFunctionName` Set to a string (e.g., 'echo' or 'print') for a function to print output inside scriptlet tags. - `async` When `true`, EJS will use an async function for rendering. (Depends - on async/await support in the JS runtime. + on async/await support in the JS runtime). - `includer` Custom function to handle EJS includes, receives `(originalPath, parsedPath)` parameters, where `originalPath` is the path in include as-is and `parsedPath` is the previously resolved path. Should return an object `{ filename, template }`,