From d30bb2acb19ebd514e99fcbc926c7a69523c49e0 Mon Sep 17 00:00:00 2001 From: rmoff Date: Mon, 12 Jan 2026 17:32:02 +0000 Subject: [PATCH] Fix typo in error message --- src/rpc/layout/version.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/rpc/layout/version.rs b/src/rpc/layout/version.rs index 840c1144..f307f86b 100644 --- a/src/rpc/layout/version.rs +++ b/src/rpc/layout/version.rs @@ -517,7 +517,7 @@ impl LayoutVersion { g.compute_maximal_flow()?; if g.get_flow_value()? < (NB_PARTITIONS * self.replication_factor) as i64 { return Err(Error::Message( - "The storage capacity of he cluster is to small. It is \ + "The storage capacity of the cluster is too small. It is \ impossible to store partitions of size 1." .into(), ));