Skip to content
This repository has been archived by the owner on Sep 26, 2023. It is now read-only.

Commit

Permalink
fix: misspelled function call (#52)
Browse files Browse the repository at this point in the history
  • Loading branch information
M. J. Fromberger authored Mar 30, 2020
1 parent b5af0ba commit d3622d5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cmd/lsif-go/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ func realMain() error {

// Ensure all the dependencies of the specified module are cached.
if err := gomod.Download(projectRoot); err != nil {
return fmt.Errof("fetching dependencies: %v", err)
return fmt.Errorf("fetching dependencies: %v", err)
}

moduleName, dependencies, err := gomod.ListModules(projectRoot)
Expand Down

0 comments on commit d3622d5

Please sign in to comment.