Explorar el Código

Fix typo in recovery message

Pepe Bawagan hace 7 años
padre
commit
1e3bf42464
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. 1 1
      main.go

+ 1 - 1
main.go

@@ -566,7 +566,7 @@ func auditGitReference(repo *RepoDescriptor, ref *plumbing.Reference) []Leak {
 					commitWg.Done()
 					<-semaphore
 					if r := recover(); r != nil {
-						log.Warnf("recoverying from panic on commit %s, likely large diff causing panic", c.Hash.String())
+						log.Warnf("recovering from panic on commit %s, likely large diff causing panic", c.Hash.String())
 					}
 				}()
 				patch, err := c.Patch(parent)