Skip to content

Commit 7eeb4f0

Browse files
committed
fmt
1 parent 6df4b27 commit 7eeb4f0

File tree

1 file changed

+7
-5
lines changed

1 file changed

+7
-5
lines changed

src/lib.rs

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -245,11 +245,13 @@ impl wasm_bindgen::describe::WasmDescribe for BufferSize {
245245
impl wasm_bindgen::convert::IntoWasmAbi for BufferSize {
246246
type Abi = Option<f64>;
247247
fn into_abi(self) -> Self::Abi {
248-
Some(match self {
249-
Self::Default => None,
250-
Self::Fixed(fc) => Some(fc),
251-
}
252-
.into_abi())
248+
Some(
249+
match self {
250+
Self::Default => None,
251+
Self::Fixed(fc) => Some(fc),
252+
}
253+
.into_abi(),
254+
)
253255
}
254256
}
255257

0 commit comments

Comments
 (0)