From 660f17a1f336f6db926368fe8b0c2136391b3dcc Mon Sep 17 00:00:00 2001 From: Ikko Ashimine Date: Tue, 19 Jan 2021 14:09:58 +0900 Subject: [PATCH] fix: typo in get-file-visitor.js (#40713) preceeding -> preceding --- tools/challenge-md-parser/mdx/plugins/utils/get-file-visitor.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/challenge-md-parser/mdx/plugins/utils/get-file-visitor.js b/tools/challenge-md-parser/mdx/plugins/utils/get-file-visitor.js index f742acea5d..ac8ed23f7f 100644 --- a/tools/challenge-md-parser/mdx/plugins/utils/get-file-visitor.js +++ b/tools/challenge-md-parser/mdx/plugins/utils/get-file-visitor.js @@ -45,7 +45,7 @@ function codeToData(node, seeds, seedKey, validate) { const key = `index${lang}`; const id = seeds[key] ? seeds[key].id : ''; - // the contents will be missing if there is an id preceeding this code + // the contents will be missing if there is an id preceding this code // block. if (!seeds[key]) { seeds[key] = defaultFile(lang, id);