diff --git a/substrate/client/finality-grandpa/src/voting_rule.rs b/substrate/client/finality-grandpa/src/voting_rule.rs
index 523a1b05cd488645c557b6dfdef69d5c3ed1f7ac..bcf17039a89b614980959666a4fb7f2055139bd8 100644
--- a/substrate/client/finality-grandpa/src/voting_rule.rs
+++ b/substrate/client/finality-grandpa/src/voting_rule.rs
@@ -68,7 +68,8 @@ impl<Block, B> VotingRule<Block, B> for () where
 }
 
 /// A custom voting rule that guarantees that our vote is always behind the best
-/// block, in the best case exactly one block behind it.
+/// block by at least N blocks. In the best case our vote is exactly N blocks
+/// behind the best block.
 #[derive(Clone)]
 pub struct BeforeBestBlockBy<N>(N);
 impl<Block, B> VotingRule<Block, B> for BeforeBestBlockBy<NumberFor<Block>> where