Fix tiny typo in ambiguity checker message (#1682)

Add one missing word
This commit is contained in:
Alec Deason 2021-03-18 01:28:21 +00:00
parent bcd5318247
commit cd4c684ad5

View file

@ -330,7 +330,7 @@ impl SystemStage {
&& at_end.is_empty())
{
let mut string = "Execution order ambiguities detected, you might want to \
add an explicit dependency relation between some these systems:\n"
add an explicit dependency relation between some of these systems:\n"
.to_owned();
if !parallel.is_empty() {
writeln!(string, " * Parallel systems:").unwrap();