From 68c0e6e3313a5d76a6f352f8e9cd0376d9d52737 Mon Sep 17 00:00:00 2001 From: antirez <antirez@gmail.com> Date: Thu, 4 Oct 2018 17:34:06 +0200 Subject: [PATCH] xclaimCommand(): fix comment typos. --- src/t_stream.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/t_stream.c b/src/t_stream.c index 7dcd18f4..09f3b37e 100644 --- a/src/t_stream.c +++ b/src/t_stream.c @@ -2063,9 +2063,9 @@ void xclaimCommand(client *c) { * do some sanity check on it, and set the deliverytime to now * (which is a sane choice usually) if the value is bogus. * To raise an error here is not wise because clients may compute - * the idle time doing some math startin from their local time, + * the idle time doing some math starting from their local time, * and this is not a good excuse to fail in case, for instance, - * the computed time is a bit in the future from our POV. */ + * the computer time is a bit in the future from our POV. */ if (deliverytime < 0 || deliverytime > now) deliverytime = now; } else { /* If no IDLE/TIME option was passed, we want the last delivery