diff --git a/src/core/error.rs b/src/core/error.rs index 6e71a0d..3ab6155 100644 --- a/src/core/error.rs +++ b/src/core/error.rs @@ -1,11 +1,11 @@ -#[cfg(not(feature = "webkit"))] +#[cfg(not(feature = "webkitgtk"))] mod c; -#[cfg(feature = "webkit")] +#[cfg(feature = "webkitgtk")] mod common; -#[cfg(not(feature = "webkit"))] +#[cfg(not(feature = "webkitgtk"))] pub use c::Error; -#[cfg(feature = "webkit")] +#[cfg(feature = "webkitgtk")] pub use common::Error; pub type Result = std::result::Result;