From 96ebe9dde72fc4bedf97663532bbd842c8b17df9 Mon Sep 17 00:00:00 2001 From: mehmetcan <2010841+mehmetcansahin@users.noreply.github.com> Date: Wed, 4 May 2022 13:53:32 +0300 Subject: [PATCH] update readme --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 30447e9..0f38ac3 100644 --- a/README.md +++ b/README.md @@ -31,7 +31,7 @@ site-icons https://github.com ```rust use site_icons::Icons; -let icons = Icons::new(); +let mut icons = Icons::new(); // scrape the icons from a url icons.load_website("https://github.com").await?; @@ -40,7 +40,7 @@ let entries = icons.entries().await; // entries are sorted from highest to lowest resolution for icon in entries { - println("{:?}", icon) + println!("{:?}", icon) } ```