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

Fix typo in strip-ansi-escapes --help output

This commit is contained in:
Alhadis 2022-01-18 21:07:07 +11:00 committed by Wez Furlong
parent c930e333c4
commit 807f483462
2 changed files with 2 additions and 2 deletions

View File

@ -9,7 +9,7 @@ use termwiz::escape::{Action, ControlCode};
)]
/// This is a little utility that strips escape sequences from
/// stdin and prints the result on stdout.
/// It preserves only printable characters and CL, LF and HT.
/// It preserves only printable characters and CR, LF and HT.
///
/// This utility is part of WezTerm.
///

View File

@ -1,6 +1,6 @@
//! This is a little utility that strips escape sequences from
//! stdin and prints the result on stdout.
//! It preserves only printable characters and CL, LF and HT.
//! It preserves only printable characters and CR, LF and HT.
use std::io::{Read, Result};
use termwiz::escape::parser::Parser;
use termwiz::escape::{Action, ControlCode};