From c14b5371d2af4e2d5cc61c1963c64fef3f6dfe9f Mon Sep 17 00:00:00 2001 From: Denis Bilenko Date: Mon, 2 Dec 2024 11:36:21 +0100 Subject: [PATCH] update comment --- libs/git/fileset.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libs/git/fileset.go b/libs/git/fileset.go index c2802ee26..8391548c9 100644 --- a/libs/git/fileset.go +++ b/libs/git/fileset.go @@ -13,7 +13,7 @@ type FileSet struct { view *View } -// NewFileSet returns [FileSet] for the directory `root` which is contained within Git repository located at `worktreeRoot`. +// NewFileSet returns [FileSet] for the directory `root` which is contained within Git worktree located at `worktreeRoot`. func NewFileSet(worktreeRoot, root vfs.Path, paths ...[]string) (*FileSet, error) { fs := fileset.New(root, paths...) v, err := NewView(worktreeRoot, root)