Fixed typo

This commit is contained in:
Pascal Borreli 2016-06-06 16:48:26 +00:00
parent 7861d21ed4
commit f2610add66

View file

@ -25,7 +25,7 @@ func GitDirectory(path string) string {
// SplitMessage splits a git message
func SplitMessage(message string) (string, string) {
// we split the messsage at \n\n or \r\n\r\n
// we split the message at \n\n or \r\n\r\n
var subject, body string
found := false
for i := 0; i+4 <= len(message); i++ {