From d69e34e983e408c7e17c2ba8f04cbf8c3f58744b Mon Sep 17 00:00:00 2001 From: overlookmotel <557937+overlookmotel@users.noreply.github.com> Date: Wed, 21 Aug 2024 09:48:43 +0000 Subject: [PATCH] refactor(semantic): fix indentation (#5037) Small follow-on after #5035. Not sure why rustfmt didn't correct indentation here. --- crates/oxc_semantic/src/post_transform_checker.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/crates/oxc_semantic/src/post_transform_checker.rs b/crates/oxc_semantic/src/post_transform_checker.rs index c99b673869e31..cb298744100f0 100644 --- a/crates/oxc_semantic/src/post_transform_checker.rs +++ b/crates/oxc_semantic/src/post_transform_checker.rs @@ -129,8 +129,8 @@ current scope {cur_scope_id:?}: {current_bindings:?} ))); if !current_scopes.has_binding(current_symbols.get_scope_id(symbol_id), name) { self.errors.push(OxcDiagnostic::error( - format!("Cannot find BindingIdentifier({name}) in the Scope corresponding to the Symbol"), - )); + format!("Cannot find BindingIdentifier({name}) in the Scope corresponding to the Symbol"), + )); } } }