From 2fd33d8fc6885d472ab19b6a571639a5b526d268 Mon Sep 17 00:00:00 2001 From: "Nicholas C. Zakas" Date: Thu, 9 Mar 2023 13:23:54 -0800 Subject: [PATCH] Update designs/2022-languages/README.md Co-authored-by: Milos Djermanovic --- designs/2022-languages/README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/designs/2022-languages/README.md b/designs/2022-languages/README.md index 6b368e6e..c935a9ac 100644 --- a/designs/2022-languages/README.md +++ b/designs/2022-languages/README.md @@ -128,9 +128,9 @@ interface ESLintLanguage { matchesSelectorClass(className: string, node: ASTNode, ancestry: Array): boolean; /** - * Parses the given file input into its component parts. This file should not + * Parses the given file input into its component parts. This method should not * throws errors for parsing errors but rather should return any parsing - * errors as parse of the ParseResult object. + * errors as `errors` of the ParseResult object. */ parse(file: File, context: LanguageContext): ParseResult | Promise;