We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
return
1 parent 3d70ba7 commit 900d603Copy full SHA for 900d603
crates/flycheck/src/lib.rs
@@ -485,7 +485,7 @@ impl CargoActor {
485
486
error.push_str(line);
487
error.push('\n');
488
- return false;
+ false
489
};
490
let output = streaming_output(
491
self.stdout,
crates/parser/src/grammar/expressions.rs
@@ -417,7 +417,7 @@ fn postfix_expr(
417
allow_calls = true;
418
block_like = BlockLike::NotBlock;
419
}
420
- return (lhs, block_like);
+ (lhs, block_like)
421
422
423
fn postfix_dot_expr<const FLOAT_RECOVERY: bool>(
0 commit comments