Skip to content

Commit

Permalink
Rustfmt fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
HalidOdat committed Jun 15, 2020
1 parent 529e587 commit ecd65b2
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion boa/src/builtins/function/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -413,7 +413,8 @@ pub fn make_constructor_fn(
prototype: Value,
constructable: bool,
) -> Value {
let _timer = BoaProfiler::global().start_event(&format!("make_constructor_fn: {}", name), "init");
let _timer =
BoaProfiler::global().start_event(&format!("make_constructor_fn: {}", name), "init");

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

0 comments on commit ecd65b2

Please sign in to comment.