Skip to content

Commit

Permalink
chore: Fix typo in log message
Browse files Browse the repository at this point in the history
  • Loading branch information
twpayne committed Mar 8, 2024
1 parent 39be95d commit 956244d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion internal/cmd/config.go
Original file line number Diff line number Diff line change
Expand Up @@ -2599,7 +2599,7 @@ func (c *Config) tempDir(key string) (chezmoi.AbsPath, error) {
return tempDirAbsPath, nil
}
tempDir, err := os.MkdirTemp("", key)
chezmoilog.InfoOrError(c.logger, "MkirTemp", err, slog.String("tempDir", tempDir))
chezmoilog.InfoOrError(c.logger, "MkdirTemp", err, slog.String("tempDir", tempDir))
if err != nil {
return chezmoi.EmptyAbsPath, err
}
Expand Down

0 comments on commit 956244d

Please sign in to comment.