From 080b11532fdd89808802745f88beb43f24d51bc0 Mon Sep 17 00:00:00 2001 From: Mikael Mello Date: Sun, 29 Sep 2024 16:10:54 -0700 Subject: [PATCH] Fix typo in readme Closes #244 --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 4a2e9d01..215b3f17 100644 --- a/README.md +++ b/README.md @@ -118,7 +118,7 @@ If you'd like to see more examples, the [`date.rs`](./inquire/examples/date.rs) ## Terminal Back-end -Currently, there are like 3 major libraries to manipulate terminals: [crossterm](https://lib.rs/crates/crossterm), [console](https://lib.rs/crates/console) and [termion](https://lib.rs/crates/crossterm). +Currently, there are like 3 major libraries to manipulate terminals: [crossterm](https://lib.rs/crates/crossterm), [console](https://lib.rs/crates/console) and [termion](https://lib.rs/crates/termion). Binary Rust applications that intend to manipulate terminals will probably pick any one of these 3 to power underlying abstractions. `inquire` chose to support crossterm by default in order to support many features on Windows out-of-the-box.