Skip to content

Commit 3124c74

Browse files
authored
Merge pull request #16 from cjpearce/fix-wasm-feature
Fix typo in wasm feature flag
2 parents eaf279d + 6cb50e9 commit 3124c74

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/native.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,5 +3,5 @@
33
#[cfg(all(feature = "curl_client", not(target_arch = "wasm32")))]
44
pub use super::isahc::IsahcClient as NativeClient;
55

6-
#[cfg(all(feature = "wasm-client", target_arch = "wasm32"))]
6+
#[cfg(all(feature = "wasm_client", target_arch = "wasm32"))]
77
pub use super::wasm::WasmClient as NativeClient;

0 commit comments

Comments
 (0)