From 68a08df9c31026bbbd1edb5f94cbae6bf71b4ee3 Mon Sep 17 00:00:00 2001 From: Wei Tang Date: Sat, 31 Mar 2018 21:41:53 +0800 Subject: [PATCH] Typo fix: Mode doc - RLP should be client (#8283) --- ethcore/src/client/config.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ethcore/src/client/config.rs b/ethcore/src/client/config.rs index 3c26c4621..b337bf431 100644 --- a/ethcore/src/client/config.rs +++ b/ethcore/src/client/config.rs @@ -74,10 +74,10 @@ impl FromStr for DatabaseCompactionProfile { pub enum Mode { /// Always on. Active, - /// Goes offline after RLP is inactive for some (given) time, but + /// Goes offline after client is inactive for some (given) time, but /// comes back online after a while of inactivity. Passive(Duration, Duration), - /// Goes offline after RLP is inactive for some (given) time and + /// Goes offline after client is inactive for some (given) time and /// stays inactive. Dark(Duration), /// Always off.