Skip to content

Commit

Permalink
Merge branch 'tk/typofix-connect-unknown-proto-error' into maint
Browse files Browse the repository at this point in the history
* tk/typofix-connect-unknown-proto-error:
  connect: fix typo in result string of prot_name()
  • Loading branch information
Junio C Hamano committed Oct 16, 2015
2 parents aa8f64d + 83e6bda commit 9ab7476
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion connect.c
Original file line number Diff line number Diff line change
Expand Up @@ -255,7 +255,7 @@ static const char *prot_name(enum protocol protocol)
case PROTO_GIT:
return "git";
default:
return "unkown protocol";
return "unknown protocol";
}
}

Expand Down

0 comments on commit 9ab7476

Please sign in to comment.