Skip to content

Commit bfb4922

Browse files
danpilchkrrrr38
authored andcommitted
fix a typo (runatlantis#1796)
1 parent 68d07cf commit bfb4922

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

server/server.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -808,7 +808,7 @@ func (s *Server) Index(w http.ResponseWriter, _ *http.Request) {
808808
func mkSubDir(parentDir string, subDir string) (string, error) {
809809
fullDir := filepath.Join(parentDir, subDir)
810810
if err := os.MkdirAll(fullDir, 0700); err != nil {
811-
return "", errors.Wrapf(err, "unable to creare dir %q", fullDir)
811+
return "", errors.Wrapf(err, "unable to create dir %q", fullDir)
812812
}
813813

814814
return fullDir, nil

0 commit comments

Comments
 (0)