From 28b16246f317fc13d08e15b3a1c10976b683811a Mon Sep 17 00:00:00 2001 From: Seun Lanlege Date: Mon, 24 Feb 2020 14:17:04 +0100 Subject: [PATCH] Update client/api/src/backend.rs Co-Authored-By: Nikolay Volf --- client/api/src/backend.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client/api/src/backend.rs b/client/api/src/backend.rs index 9f5dc7c73a3f0..dfe7d5e8f1157 100644 --- a/client/api/src/backend.rs +++ b/client/api/src/backend.rs @@ -169,7 +169,7 @@ pub trait BlockImportOperation { fn mark_head(&mut self, id: BlockId) -> sp_blockchain::Result<()>; } -/// trait for performing operations on the backend +/// Interface for performing operations on the backend. pub trait ClientBackend> { /// Lock the import lock, and run operations inside. fn lock_import_and_run(&self, f: F) -> Result where