We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 17f87d4 commit 70229f5Copy full SHA for 70229f5
src/lib.rs
@@ -46,7 +46,7 @@ pub mod mqueue;
46
47
pub mod pty;
48
49
-#[cfg(any(target_os = "linux", target_os = "macos"))]
+#[cfg(any(target_os = "linux", target_os = "android", target_os = "macos"))]
50
pub mod poll;
51
52
pub mod net;
@@ -96,7 +96,7 @@ pub enum Error {
96
/// The operation involved a conversion to Rust's native String type, which failed because the
97
/// string did not contain all valid UTF-8.
98
InvalidUtf8,
99
- /// The operation is not supported by Nix, in this instance either use the libc bindings or
+ /// The operation is not supported by Nix, in this instance either use the libc bindings or
100
/// consult the module documentation to see if there is a more appropriate interface available.
101
UnsupportedOperation,
102
}
0 commit comments