diff --git a/README.md b/README.md
index 73054f4..fc5b36c 100644
--- a/README.md
+++ b/README.md
@@ -20,8 +20,8 @@ The implementation is strongly inspired by [go-ethereum trie](https://github.com
```rust
/// NOTE: `Clone` must be ensured to be thread-safe.
-pub trait DB: Send + Sync + Debug + Clone {
- type Error: Error;
+pub trait DB: Send + Sync + Clone {
+ type Error: ::std::error::Error;
fn get(&self, key: &[u8]) -> Result