Skip to content

Commit 66573b7

Browse files
committed
Use 'a' article for &Option.
1 parent 0e46759 commit 66573b7

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

compiler/rustc_lint/src/for_loops_over_fallibles.rs

+1
Original file line numberDiff line numberDiff line change
@@ -62,6 +62,7 @@ impl<'tcx> LateLintPass<'tcx> for ForLoopsOverFallibles {
6262
};
6363

6464
let (article, ty, var) = match adt.did() {
65+
did if cx.tcx.is_diagnostic_item(sym::Option, did) && ref_mutability.is_some() => ("a", "Option", "Some"),
6566
did if cx.tcx.is_diagnostic_item(sym::Option, did) => ("an", "Option", "Some"),
6667
did if cx.tcx.is_diagnostic_item(sym::Result, did) => ("a", "Result", "Ok"),
6768
_ => return,

0 commit comments

Comments
 (0)