aboutsummaryrefslogtreecommitdiffstats
path: root/src/lib.rs
diff options
context:
space:
mode:
authorJesse Luehrs <doy@tozt.net>2021-03-03 02:15:33 -0500
committerJesse Luehrs <doy@tozt.net>2021-03-03 02:15:33 -0500
commit53dbbd035ffe86e4655c3afd36faa5752ded0737 (patch)
tree5f1af7992e1416249c7ffc0be8854814c7bf8245 /src/lib.rs
parent1c297c4f89fca61b72a290a46be66a0c99f1912d (diff)
downloadpty-process-53dbbd035ffe86e4655c3afd36faa5752ded0737.tar.gz
pty-process-53dbbd035ffe86e4655c3afd36faa5752ded0737.zip
adjust the visibility of some types
to make the docs make more sense
Diffstat (limited to 'src/lib.rs')
-rw-r--r--src/lib.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/lib.rs b/src/lib.rs
index 42c39f4..d189676 100644
--- a/src/lib.rs
+++ b/src/lib.rs
@@ -1,9 +1,9 @@
mod command;
-pub use command::Command;
+pub use command::{Child, Command};
mod error;
pub use error::{Error, Result};
mod pty;
-pub use pty::{Pty, Size};
+pub use pty::Size;
pub mod std;