Skip to content

Commit

Permalink
list-catalog: fixed typo in log message
Browse files Browse the repository at this point in the history
  • Loading branch information
hadjian committed Nov 13, 2023
1 parent 0e87fae commit 3922d40
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion internal/remotes/fs.go
Original file line number Diff line number Diff line change
Expand Up @@ -144,7 +144,7 @@ func (f *FileRemote) List(filter string) (model.Toc, error) {

data, err := os.ReadFile(filepath.Join(f.root, toc.TOCFilename))
if err != nil {
return model.Toc{}, errors.New("Not toc found. Run `create-toc` for this remote.")
return model.Toc{}, errors.New("No toc found. Run `create-toc` for this remote.")
}

var toc model.Toc
Expand Down

0 comments on commit 3922d40

Please sign in to comment.