Fix spelling mistake

This commit is contained in:
Ivan Molodetskikh
2024-09-02 09:16:42 +03:00
parent 64a9351921
commit 17ac52e1d4
+1 -1
View File
@@ -690,7 +690,7 @@ impl FromStr for WorkspaceReferenceArg {
if let Ok(idx) = u8::try_from(index) {
Self::Index(idx)
} else {
return Err("workspace indexes must be between 0 and 255");
return Err("workspace index must be between 0 and 255");
}
} else {
Self::Name(s.to_string())