Skip to content

Commit 1e70097

Browse files
committed
fmt: satisfy rustfmt
1 parent 6da430f commit 1e70097

File tree

1 file changed

+2
-2
lines changed
  • core/engine/src/builtins/typed_array

1 file changed

+2
-2
lines changed

core/engine/src/builtins/typed_array/object.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -312,8 +312,8 @@ pub(crate) fn typed_array_exotic_prevent_extensions(
312312
) -> JsResult<bool> {
313313
let is_fixed_length = {
314314
let ta = obj
315-
.downcast_ref::<TypedArray>()
316-
.js_expect("must be a TypedArray")?;
315+
.downcast_ref::<TypedArray>()
316+
.js_expect("must be a TypedArray")?;
317317

318318
ta.is_fixed_length()
319319
}; // Note: this block ensures that the borrow of obj is dropped

0 commit comments

Comments
 (0)