mirror of
https://github.com/bevyengine/bevy
synced 2024-11-10 15:14:50 +00:00
Fix tiny typo in ambiguity checker message (#1682)
Add one missing word
This commit is contained in:
parent
bcd5318247
commit
cd4c684ad5
1 changed files with 1 additions and 1 deletions
|
@ -330,7 +330,7 @@ impl SystemStage {
|
||||||
&& at_end.is_empty())
|
&& at_end.is_empty())
|
||||||
{
|
{
|
||||||
let mut string = "Execution order ambiguities detected, you might want to \
|
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();
|
.to_owned();
|
||||||
if !parallel.is_empty() {
|
if !parallel.is_empty() {
|
||||||
writeln!(string, " * Parallel systems:").unwrap();
|
writeln!(string, " * Parallel systems:").unwrap();
|
||||||
|
|
Loading…
Reference in a new issue