Skip to content

Commit 3d50568

Browse files
committed
Cleanup
1 parent 814bdeb commit 3d50568

File tree

2 files changed

+7
-4
lines changed

2 files changed

+7
-4
lines changed

cspell.json

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,12 @@
1515
"repos",
1616
"shrinkwrap",
1717
"streetsidesoftware",
18-
"tauri"
18+
"tauri",
19+
"rustc",
20+
"xctoolchain",
21+
"rpath",
22+
"Xswiftc",
23+
"objc"
1924
],
2025
"useGitignore": true,
2126
"ignorePaths": [

src/macos.rs

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -42,9 +42,7 @@ impl<R: Runtime> Iap<R> {
4242
let parsed: T = serde_json::from_str(&response)?;
4343
Ok(parsed)
4444
}
45-
ffi::FFIResult::Err(err) => {
46-
Err(std::io::Error::other(err).into())
47-
}
45+
ffi::FFIResult::Err(err) => Err(std::io::Error::other(err).into()),
4846
}
4947
}
5048

0 commit comments

Comments
 (0)