Skip to content

Commit

Permalink
connect: fix typo in result string of prot_name()
Browse files Browse the repository at this point in the history
Replace 'unkown' with 'unknown'.

Signed-off-by: Tobias Klauser <tklauser@distanz.ch>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
  • Loading branch information
Tobias Klauser authored and Junio C Hamano committed Sep 25, 2015
1 parent 8d530c4 commit 83e6bda
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 @@ -254,7 +254,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 83e6bda

Please sign in to comment.