aboutsummaryrefslogtreecommitdiffstats
path: root/examples/input.rs
diff options
context:
space:
mode:
Diffstat (limited to 'examples/input.rs')
-rw-r--r--examples/input.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/input.rs b/examples/input.rs
index e63787b..d478f92 100644
--- a/examples/input.rs
+++ b/examples/input.rs
@@ -1,5 +1,5 @@
fn main() {
- let (mut input, _raw) = textmode::blocking::Input::new();
+ let (mut input, _raw) = textmode::blocking::Input::new().unwrap();
for arg in std::env::args().skip(1) {
match arg.as_str() {
"--disable-utf8" => input.parse_utf8(false),