From 00898563b847678515c75d67b5e02c81135ad40b Mon Sep 17 00:00:00 2001 From: mityu Date: Sun, 9 Mar 2025 23:38:48 +0900 Subject: [PATCH] chore: fix jsdoc for quickfix source --- builtin/source/quickfix.ts | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/builtin/source/quickfix.ts b/builtin/source/quickfix.ts index 62b08c6..1bab8d6 100644 --- a/builtin/source/quickfix.ts +++ b/builtin/source/quickfix.ts @@ -11,12 +11,12 @@ type Detail = { }; /** - * Provides a source for recently accessed files. + * Provides a source for the current quickfix errors. * - * This source fetches the list of old files stored in the `v:oldfiles` variable - * in Vim/Neovim and yields them with each file’s path as `Detail`. + * This source reads the list of the current quickfix errors and yields them + * with each error's detailed information as `Detail`. * - * @returns A source that yields recently accessed files. + * @returns A source that yields the current quickfix errors. */ export function quickfix(): Source { return defineSource(async function* (denops, _params, { signal }) {