From 45adba2784271aa151267cb9a4fdc783313d4c6c Mon Sep 17 00:00:00 2001 From: chris48s Date: Mon, 19 Aug 2024 12:44:24 +0100 Subject: [PATCH] improve description for parser param --- src/plugins.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/plugins.js b/src/plugins.js index c4a7842..ed4ac50 100644 --- a/src/plugins.js +++ b/src/plugins.js @@ -39,9 +39,9 @@ class BasePlugin { * `dotRelative` option. This means relative paths in the current directory * will be prefixed with `./` (or `.\` on Windows) even if this was not * present in the input filename or pattern. - * @param {string | undefined} parser - If this filename matched a file parser - * the user has specified in a custom schema, this will be passed to - * `parseFile` in the `parser` param. + * @param {string | undefined} parser - If the user has specified a parser to + * use for this file in a custom schema, this will be passed to `parseFile` + * in the `parser` param. * @returns {Document | undefined} Parsed file contents */ // eslint-disable-next-line no-unused-vars