Make missing argument placeholder more obvious that it's a placeholder

This commit is contained in:
Michael Goulet 2022-06-19 15:10:42 -07:00
parent 2b646bd533
commit 4400a26e31
22 changed files with 114 additions and 112 deletions

View file

@ -15,8 +15,8 @@ LL | pub fn push(&mut self, value: T) {
| ^^^^
help: remove the extra argument
|
LL | groups.push({(Vec<String>, Vec<Process>)});
| ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
LL | groups.push(/* (Vec<String>, Vec<Process>) */);
| ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
error: aborting due to previous error