Skip to content

Commit ef2b9a4

Browse files
committed
x.py fmt
1 parent e49323b commit ef2b9a4

File tree

3 files changed

+5
-7
lines changed

3 files changed

+5
-7
lines changed

compiler/rustc_typeck/src/check/_match.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ use rustc_trait_selection::traits::{
1414
};
1515

1616
impl<'a, 'tcx> FnCtxt<'a, 'tcx> {
17-
#[instrument(skip(self), level="debug")]
17+
#[instrument(skip(self), level = "debug")]
1818
pub fn check_match(
1919
&self,
2020
expr: &'tcx hir::Expr<'tcx>,

compiler/rustc_typeck/src/check/coercion.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1328,7 +1328,7 @@ impl<'tcx, 'exprs, E: AsCoercionSite> CoerceMany<'tcx, 'exprs, E> {
13281328
/// The inner coercion "engine". If `expression` is `None`, this
13291329
/// is a forced-unit case, and hence `expression_ty` must be
13301330
/// `Nil`.
1331-
#[instrument(skip(self,fcx,augment_error,label_expression_as_expected), level="debug")]
1331+
#[instrument(skip(self, fcx, augment_error, label_expression_as_expected), level = "debug")]
13321332
crate fn coerce_inner<'a>(
13331333
&mut self,
13341334
fcx: &FnCtxt<'a, 'tcx>,

compiler/rustc_typeck/src/check/expr.rs

+3-5
Original file line numberDiff line numberDiff line change
@@ -156,7 +156,7 @@ impl<'a, 'tcx> FnCtxt<'a, 'tcx> {
156156
/// Note that inspecting a type's structure *directly* may expose the fact
157157
/// that there are actually multiple representations for `Error`, so avoid
158158
/// that when err needs to be handled differently.
159-
#[instrument(skip(self), level="debug")]
159+
#[instrument(skip(self), level = "debug")]
160160
pub(super) fn check_expr_with_expectation(
161161
&self,
162162
expr: &'tcx hir::Expr<'tcx>,
@@ -176,7 +176,7 @@ impl<'a, 'tcx> FnCtxt<'a, 'tcx> {
176176
}
177177
}
178178
}
179-
}
179+
}
180180

181181
// True if `expr` is a `Try::from_ok(())` that is a result of desugaring a try block
182182
// without the final expr (e.g. `try { return; }`). We don't want to generate an
@@ -1066,9 +1066,7 @@ impl<'a, 'tcx> FnCtxt<'a, 'tcx> {
10661066
Ok(cast_check) => {
10671067
debug!(
10681068
"check_expr_cast: deferring cast from {:?} to {:?}: {:?}",
1069-
t_cast,
1070-
t_expr,
1071-
cast_check,
1069+
t_cast, t_expr, cast_check,
10721070
);
10731071
deferred_cast_checks.push(cast_check);
10741072
t_cast

0 commit comments

Comments
 (0)