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;