aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJesse Luehrs <doy@tozt.net>2021-03-06 01:59:35 -0500
committerJesse Luehrs <doy@tozt.net>2021-03-06 01:59:35 -0500
commit307c55465c1a4c99620382576333d6fc712bf6fd (patch)
treeb24722e9e3e70c0f4be3cd6bb60e756d52efa785
parentc9b15b9535f7726208669e450630535532bb66d9 (diff)
downloadpty-process-307c55465c1a4c99620382576333d6fc712bf6fd.tar.gz
pty-process-307c55465c1a4c99620382576333d6fc712bf6fd.zip
pty_resize -> resize_pty
-rw-r--r--src/command.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/command.rs b/src/command.rs
index d6c4b2d..6ba783c 100644
--- a/src/command.rs
+++ b/src/command.rs
@@ -92,7 +92,7 @@ where
self.pty.pt_mut()
}
- pub fn pty_resize(&self, size: &crate::pty::Size) -> Result<()> {
+ pub fn resize_pty(&self, size: &crate::pty::Size) -> Result<()> {
self.pty.resize(size)
}
}