We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 672ce55 commit 59a139aCopy full SHA for 59a139a
Cargo.toml
@@ -11,7 +11,7 @@ readme = "README.md"
11
keywords = ["ansi", "escape", "terminal"]
12
13
[dependencies]
14
-vte = { version = "0.10", default-features = false }
+vte = { version = "0.11", default-features = false }
15
16
[dev-dependencies]
17
doc-comment = "0.3"
src/lib.rs
@@ -79,7 +79,7 @@ where
79
///
80
/// ```
81
/// let str_with_colors = "\x1b[32mfoo\x1b[m bar";
82
-/// let string_without_colors = strip_ansi_escapes::strip_str(string_with_colors);
+/// let string_without_colors = strip_ansi_escapes::strip_str(str_with_colors);
83
/// assert_eq!(string_without_colors, "foo bar");
84
85
pub fn strip_str<T>(data: T) -> String
0 commit comments