Fix typo in error message

This commit is contained in:
rmoff
2026-01-12 17:32:02 +00:00
parent 730c613807
commit d30bb2acb1
+1 -1
View File
@@ -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(),
));