1
0
Fork 0
mirror of https://github.com/git/git.git synced 2024-06-01 19:26:10 +02:00

Merge branch 'tk/typofix-connect-unknown-proto-error' into maint

* tk/typofix-connect-unknown-proto-error:
  connect: fix typo in result string of prot_name()
This commit is contained in:
Junio C Hamano 2015-10-16 14:32:55 -07:00
commit 9ab74762cd

View File

@ -255,7 +255,7 @@ static const char *prot_name(enum protocol protocol)
case PROTO_GIT:
return "git";
default:
return "unkown protocol";
return "unknown protocol";
}
}