Skip to content

Commit ecd65b2

Browse files
committed
Rustfmt fixes
1 parent 529e587 commit ecd65b2

File tree

1 file changed

+2
-1
lines changed
  • boa/src/builtins/function

1 file changed

+2
-1
lines changed

boa/src/builtins/function/mod.rs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -413,7 +413,8 @@ pub fn make_constructor_fn(
413413
prototype: Value,
414414
constructable: bool,
415415
) -> Value {
416-
let _timer = BoaProfiler::global().start_event(&format!("make_constructor_fn: {}", name), "init");
416+
let _timer =
417+
BoaProfiler::global().start_event(&format!("make_constructor_fn: {}", name), "init");
417418

418419
// Create the native function
419420
let mut function = Function::builtin(Vec::new(), body);

0 commit comments

Comments
 (0)