diff options
author | 2015-10-16 14:32:55 -0700 | |
---|---|---|
committer | 2015-10-16 14:32:55 -0700 | |
commit | 9ab74762cdb32d17fcb811e8721b706ed5c0570b (patch) | |
tree | 1612e3d84bfcc125929951d1b08b70e79dd7a47a | |
parent | Merge branch 'jk/asciidoctor-section-heading-markup-fix' into maint (diff) | |
parent | connect: fix typo in result string of prot_name() (diff) | |
download | tgif-9ab74762cdb32d17fcb811e8721b706ed5c0570b.tar.xz |
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()
-rw-r--r-- | connect.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -255,7 +255,7 @@ static const char *prot_name(enum protocol protocol) case PROTO_GIT: return "git"; default: - return "unkown protocol"; + return "unknown protocol"; } } |