From 53dbbd035ffe86e4655c3afd36faa5752ded0737 Mon Sep 17 00:00:00 2001 From: Jesse Luehrs Date: Wed, 3 Mar 2021 02:15:33 -0500 Subject: adjust the visibility of some types to make the docs make more sense --- src/lib.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/lib.rs') 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; -- cgit v1.2.3-54-g00ecf