Skip to content

Commit 014bc4b

Browse files
committed
Simplify import syntax
1 parent 3619fb0 commit 014bc4b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/ffi.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,10 +15,10 @@ use crate::rustimpl;
1515
mod libc;
1616

1717
#[cfg(all(target_arch = "wasm32", target_os = "unknown"))]
18-
use std::path::{PathBuf};
18+
use std::path::PathBuf;
1919

2020
#[cfg(not(all(target_arch = "wasm32", target_os = "unknown")))]
21-
use std::path::{Path};
21+
use std::path::Path;
2222

2323
macro_rules! lode_error {
2424
($e:expr) => {

0 commit comments

Comments
 (0)