summaryrefslogtreecommitdiff
path: root/src/networking.c
diff options
context:
space:
mode:
authorKaige Ye <yekaige2010@gmail.com>2023-03-15 17:05:42 +0800
committerGitHub <noreply@github.com>2023-03-15 11:05:42 +0200
commit5360350e4aeaa2c7498be4af29aee449f0ee49ad (patch)
treecea49737c24b6d2d8d2d0997f55453892c6994be /src/networking.c
parent9344f654c6227f30adf8bafd49b4218357c438b7 (diff)
downloadredis-5360350e4aeaa2c7498be4af29aee449f0ee49ad.tar.gz
cleanup NBSP characters in comments (#10555)
Replace NBSP character (0xC2 0xA0) with space (0x20). Looks like that was originally added due to misconfigured editor which seems to have been fixed by now.
Diffstat (limited to 'src/networking.c')
-rw-r--r--src/networking.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/networking.c b/src/networking.c
index bc5d8128f..954de341e 100644
--- a/src/networking.c
+++ b/src/networking.c
@@ -575,8 +575,8 @@ void addReplyErrorObject(client *c, robj *err) {
}
/* Sends either a reply or an error reply by checking the first char.
- * If the first char is '-' the reply is considered an error.
- * In any case the given reply is sent, if the reply is also recognize
+ * If the first char is '-' the reply is considered an error.
+ * In any case the given reply is sent, if the reply is also recognize
* as an error we also perform some post reply operations such as
* logging and stats update. */
void addReplyOrErrorObject(client *c, robj *reply) {