From c349f75ffea148bf488e71cb8e5724e666868921 Mon Sep 17 00:00:00 2001 From: teor Date: Wed, 16 Sep 2020 11:16:47 +1000 Subject: [PATCH] Split a sentence in a state comment --- zebra-state/src/sled_state.rs | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/zebra-state/src/sled_state.rs b/zebra-state/src/sled_state.rs index a095b5a21..5a0fe928a 100644 --- a/zebra-state/src/sled_state.rs +++ b/zebra-state/src/sled_state.rs @@ -84,8 +84,9 @@ impl SledState { /// Commit a finalized block to the state. /// /// It's the caller's responsibility to ensure that blocks are committed in - /// order. This function is called by [`process_queue`], which does, and is - /// intentionally not exposed as part of the public API of the [`SledState`]. + /// order. This function is called by [`process_queue`], which ensures order. + /// It is intentionally not exposed as part of the public API of the + /// [`SledState`]. fn commit_finalized(&mut self, queued_block: QueuedBlock) { let QueuedBlock { block, rsp_tx } = queued_block;