From 99fe255f33f774f04c09755572503349c915112b Mon Sep 17 00:00:00 2001 From: breno Date: Sun, 28 Jan 2024 05:59:41 -0400 Subject: [PATCH] Update README getting started snippets (#859) Theres no Result trait in crossterm --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index b9f83f74..e1170a08 100644 --- a/README.md +++ b/README.md @@ -107,7 +107,7 @@ use std::io::{stdout, Write}; use crossterm::{ execute, style::{Color, Print, ResetColor, SetBackgroundColor, SetForegroundColor}, - ExecutableCommand, Result, + ExecutableCommand, event, };