summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAtul Bhosale <atul1bhosale@gmail.com>2019-09-17 14:52:44 +0700
committerDoug Tangren <d.tangren@gmail.com>2019-09-17 16:52:44 +0900
commit027e83c3b0c3d2085c1eb2c7e3697bee2c1498a3 (patch)
tree6e2e1e5634e0f548415485973dc393d7035e5cd2
parentf10534b3179dcbc2667b1c6aed3039a5f3a40f0f (diff)
Remove extra semicolon to fix cargo fmt --all -- --check (#195)
-rw-r--r--examples/volumes.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/volumes.rs b/examples/volumes.rs
index ea577a7..c5548ec 100644
--- a/examples/volumes.rs
+++ b/examples/volumes.rs
@@ -12,7 +12,7 @@ fn main() {
println!("volume -> {:#?}", v)
}
})
- .map_err(|e| eprintln!("Error: {}", e));;
+ .map_err(|e| eprintln!("Error: {}", e));
tokio::run(fut);
}