aboutsummaryrefslogtreecommitdiffstats
path: root/src/command
diff options
context:
space:
mode:
Diffstat (limited to 'src/command')
-rw-r--r--src/command/async_process.rs2
-rw-r--r--src/command/std.rs2
-rw-r--r--src/command/tokio.rs2
3 files changed, 3 insertions, 3 deletions
diff --git a/src/command/async_process.rs b/src/command/async_process.rs
index 4248402..4a1d042 100644
--- a/src/command/async_process.rs
+++ b/src/command/async_process.rs
@@ -1,7 +1,7 @@
use async_process::unix::CommandExt as _;
use std::os::unix::io::FromRawFd as _;
-impl super::CommandImpl for async_process::Command {
+impl super::Impl for async_process::Command {
type Child = async_process::Child;
type Pty = crate::pty::async_io::Pty;
diff --git a/src/command/std.rs b/src/command/std.rs
index f1c5418..5c08808 100644
--- a/src/command/std.rs
+++ b/src/command/std.rs
@@ -1,7 +1,7 @@
use std::os::unix::io::FromRawFd as _;
use std::os::unix::process::CommandExt as _;
-impl super::CommandImpl for std::process::Command {
+impl super::Impl for std::process::Command {
type Child = std::process::Child;
type Pty = crate::pty::std::Pty;
diff --git a/src/command/tokio.rs b/src/command/tokio.rs
index 67baf74..58d2c26 100644
--- a/src/command/tokio.rs
+++ b/src/command/tokio.rs
@@ -1,6 +1,6 @@
use std::os::unix::io::FromRawFd as _;
-impl super::CommandImpl for tokio::process::Command {
+impl super::Impl for tokio::process::Command {
type Child = tokio::process::Child;
type Pty = crate::pty::tokio::Pty;