Skip to content

Commit 6cb50e9

Browse files
committed
Correct typo in wasm feature flag
1 parent eaf279d commit 6cb50e9

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)