Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion internal/nix/store.go
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ func StorePathsFromInstallable(ctx context.Context, installable string, allowIns
return parseStorePathFromInstallableOutput(installable, resultBytes)
}

// StorePathAreInStore returns true if the store path is in the store
// StorePathsAreInStore returns true if the store path is in the store
// It relies on `nix store ls` to check if the store path is in the store
func StorePathsAreInStore(ctx context.Context, storePaths []string) (bool, error) {
for _, storePath := range storePaths {
Expand Down
2 changes: 1 addition & 1 deletion internal/vercheck/vercheck.go
Original file line number Diff line number Diff line change
Expand Up @@ -257,7 +257,7 @@ func isNewDevboxAvailable() bool {
return SemverCompare(currentDevboxVersion, latest) < 0
}

// currentLauncherAvailable returns launcher's version if it is
// currentLauncherVersion returns launcher's version if it is
// available, or empty string if it is not.
func currentLauncherVersion() string {
launcherVersion := os.Getenv(envir.LauncherVersion)
Expand Down