mirror of
https://github.com/wez/wezterm.git
synced 2024-12-19 03:11:31 +03:00
fix comment
This commit is contained in:
parent
fa91f1cd7b
commit
11a32f7d99
@ -2,8 +2,6 @@
|
|||||||
//! something is a terminal teletype or not.
|
//! something is a terminal teletype or not.
|
||||||
//! This module defines the IsTty trait and the is_tty method to
|
//! This module defines the IsTty trait and the is_tty method to
|
||||||
//! return true if the item represents a terminal.
|
//! 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)]
|
#[cfg(unix)]
|
||||||
use std::os::unix::io::AsRawFd;
|
use std::os::unix::io::AsRawFd;
|
||||||
#[cfg(windows)]
|
#[cfg(windows)]
|
||||||
|
@ -1,8 +1,4 @@
|
|||||||
//! An abstraction over a terminal device
|
//! 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 caps::Capabilities;
|
||||||
use failure::Error;
|
use failure::Error;
|
||||||
|
Loading…
Reference in New Issue
Block a user