Skip to content

Commit c3a90c8

Browse files
authored
chore: fix function names in comment (#1976)
## Summary fix function names in comment ## How was it tested? Signed-off-by: needsure <[email protected]>
1 parent dc3ea96 commit c3a90c8

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

Diff for: internal/nix/store.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ func StorePathsFromInstallable(ctx context.Context, installable string, allowIns
5050
return parseStorePathFromInstallableOutput(installable, resultBytes)
5151
}
5252

53-
// StorePathAreInStore returns true if the store path is in the store
53+
// StorePathsAreInStore returns true if the store path is in the store
5454
// It relies on `nix store ls` to check if the store path is in the store
5555
func StorePathsAreInStore(ctx context.Context, storePaths []string) (bool, error) {
5656
for _, storePath := range storePaths {

Diff for: internal/vercheck/vercheck.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -257,7 +257,7 @@ func isNewDevboxAvailable() bool {
257257
return SemverCompare(currentDevboxVersion, latest) < 0
258258
}
259259

260-
// currentLauncherAvailable returns launcher's version if it is
260+
// currentLauncherVersion returns launcher's version if it is
261261
// available, or empty string if it is not.
262262
func currentLauncherVersion() string {
263263
launcherVersion := os.Getenv(envir.LauncherVersion)

0 commit comments

Comments
 (0)