From c863a9bcc59eb147e33a875b962810b277b16939 Mon Sep 17 00:00:00 2001 From: mulhern Date: Thu, 6 Apr 2023 15:02:20 -0400 Subject: [PATCH] Fix typo in error message about sector sizes Also remove terminating period. Signed-off-by: mulhern --- src/engine/strat_engine/engine.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/engine/strat_engine/engine.rs b/src/engine/strat_engine/engine.rs index bc83ed3189..5d58b6d572 100644 --- a/src/engine/strat_engine/engine.rs +++ b/src/engine/strat_engine/engine.rs @@ -419,7 +419,7 @@ impl Engine for StratEngine { let block_size_summary = unowned_devices.blocksizes(); if block_size_summary.len() > 1 { - let err_str = "The devices specified for initializing the pool do do not all have the same physical sector size or do not all have the same logical sector size.".into(); + let err_str = "The devices specified for initializing the pool do not all have the same physical sector size or do not all have the same logical sector size".into(); return Err(StratisError::Msg(err_str)); }