Auto merge of #58040 - vors:fix-E0283-explanation, r=cramertj

Fix grammar in E0283 explanation

Author probably meant not "Maybe anything else?", but "Maybe something else?"
This commit is contained in:
bors 2019-02-01 06:34:45 +00:00
commit 1aa250635e
1 changed files with 1 additions and 1 deletions

View File

@ -1187,7 +1187,7 @@ impl Generator for AnotherImpl {
fn main() {
let cont: u32 = Generator::create();
// error, impossible to choose one of Generator trait implementation
// Impl or AnotherImpl? Maybe anything else?
// Should it be Impl or AnotherImpl, maybe something else?
}
```