summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSalvatore Sanfilippo <antirez@gmail.com>2017-11-28 18:41:51 +0100
committerGitHub <noreply@github.com>2017-11-28 18:41:51 +0100
commit923502a70b08a9635e857bd7f09c1601bd59a5c4 (patch)
treeac44d3014c7b69a7f2345a1006addb063904954e
parent26826329f530d068096796b8b972106f266eb738 (diff)
parent005d9fa8615bfffb550c62f94a88056e06858e74 (diff)
downloadredis-923502a70b08a9635e857bd7f09c1601bd59a5c4.tar.gz
Merge pull request #4166 from charpty/wip-redisclic-typo
redis-cli.c typo: helpe -> helper.
-rw-r--r--src/redis-cli.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/redis-cli.c b/src/redis-cli.c
index 92cceddb8..e2c257a6c 100644
--- a/src/redis-cli.c
+++ b/src/redis-cli.c
@@ -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);