From 2d9cfd38b035457ce8c9f883eb42f932315769e2 Mon Sep 17 00:00:00 2001 From: "Kim, Jang-hwan" Date: Mon, 7 Mar 2022 01:24:33 +0900 Subject: [PATCH] Update index.js fix typo, which appears in IDEs. --- index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/index.js b/index.js index f334d7a..be0f696 100644 --- a/index.js +++ b/index.js @@ -16,7 +16,7 @@ export {CONTINUE, SKIP, EXIT} * @param tree Abstract syntax tree to walk * @param test Test, optional * @param visitor Function to run for each node - * @param reverse Fisit the tree in reverse, defaults to false + * @param reverse Visit the tree in reverse, defaults to false */ export const visit = /**