From 553aa0e259a5b2c5f53dbc322a94b8f6930bc537 Mon Sep 17 00:00:00 2001 From: antirez Date: Thu, 13 Oct 2016 12:48:36 +0200 Subject: [PATCH] module.c: trim comment to 80 cols. --- src/module.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/module.c b/src/module.c index a3e755c29..91cd53090 100644 --- a/src/module.c +++ b/src/module.c @@ -752,11 +752,11 @@ RedisModuleString *RM_CreateString(RedisModuleCtx *ctx, const char *ptr, size_t } -/* Create a new module string object from a printf format and arguments. - * The returned string must be freed with RedisModule_FreeString(), unless automatic - * memory is enabled. +/* Create a new module string object from a printf format and arguments. + * The returned string must be freed with RedisModule_FreeString(), unless + * automatic memory is enabled. * - * The string is created using the sds formatter function sdscatvprintf() */ + * The string is created using the sds formatter function sdscatvprintf(). */ RedisModuleString *RM_CreateStringPrintf(RedisModuleCtx *ctx, const char *fmt, ...) { sds s = sdsempty();