Unnamed repository; edit this file 'description' to name the repository.
Rollup merge of #157545 - ariagivens:suggest-comma, r=JonathanBrouwer
Suggest using comma to separate valid attribute list items
If the parser encounters a missing comma in an attribute arg list and the next item is valid, suggest adding the comma.
For example:
```
error: attribute items not separated with `,`
--> $DIR/expected-comma-found-token.rs:7:26
|
LL | message="the message"
| ^ help: try adding `,` here
```