From 775ec9f19f099a987a604b85dc72ca83784f4e38 Mon Sep 17 00:00:00 2001 From: Aidan <80614206+aidantomcy@users.noreply.github.com> Date: Tue, 27 Feb 2024 04:38:20 +0530 Subject: [PATCH] fix usage of wildcard import (#165) --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 35e69db..9b8a30f 100644 --- a/README.md +++ b/README.md @@ -40,7 +40,7 @@ and add this to your `lib.rs` or `main.rs`: ```rust extern crate colored; // not needed in Rust 2018+ - use colored::*; + use colored::Colorize; // test the example with `cargo run --example most_simple` fn main() {