Merge pull request #4166 from charpty/wip-redisclic-typo

redis-cli.c typo: helpe -> helper.
This commit is contained in:
Salvatore Sanfilippo 2017-11-28 18:41:51 +01:00 committed by GitHub
commit 923502a70b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -710,7 +710,7 @@ int isColorTerm(void) {
return t != NULL && strstr(t,"xterm") != NULL;
}
/* Helpe function for sdsCatColorizedLdbReply() appending colorize strings
/* Helper function for sdsCatColorizedLdbReply() appending colorize strings
* to an SDS string. */
sds sdscatcolor(sds o, char *s, size_t len, char *color) {
if (!isColorTerm()) return sdscatlen(o,s,len);