From 2555c3442754d648c36f0eb32b45f7b87d43529e Mon Sep 17 00:00:00 2001 From: Alexander Andreev Date: Sat, 17 Feb 2018 10:59:21 +0300 Subject: [PATCH] spelling check --- src/redis.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/redis.rs b/src/redis.rs index ac6efab81..8667cb816 100644 --- a/src/redis.rs +++ b/src/redis.rs @@ -69,7 +69,7 @@ impl Actor for RedisActor { Err(err) => { error!("Can not connect to redis server: {}", err); // re-connect with backoff time. - // we stop currect context, supervisor will restart it. + // we stop current context, supervisor will restart it. if let Some(timeout) = act.backoff.next_backoff() { ctx.run_later(timeout, |_, ctx| ctx.stop()); } else { @@ -80,7 +80,7 @@ impl Actor for RedisActor { .map_err(|err, act, ctx| { error!("Can not connect to redis server: {}", err); // re-connect with backoff time. - // we stop currect context, supervisor will restart it. + // we stop current context, supervisor will restart it. if let Some(timeout) = act.backoff.next_backoff() { ctx.run_later(timeout, |_, ctx| ctx.stop()); } else {