1
1
mirror of https://github.com/wez/wezterm.git synced 2024-12-18 19:01:36 +03:00

fix comment

This commit is contained in:
Wez Furlong 2018-07-23 21:25:06 -07:00
parent fa91f1cd7b
commit 11a32f7d99
2 changed files with 0 additions and 6 deletions

View File

@ -2,8 +2,6 @@
//! something is a terminal teletype or not.
//! This module defines the IsTty trait and the is_tty method to
//! return true if the item represents a terminal.
//! The implementation at the time of writing is unix centric, but
//! the trait could also be ported to Windows and have meaning.
#[cfg(unix)]
use std::os::unix::io::AsRawFd;
#[cfg(windows)]

View File

@ -1,8 +1,4 @@
//! An abstraction over a terminal device
//! `Terminal` implements `Read` and `Write` and offers methods
//! for changing the input mode. The interface considers the differences
//! between POSIX and Windows systems, but is implemented only for POSIX
//! at this time.
use caps::Capabilities;
use failure::Error;