From 11d7f8ffb2ba2c282b6c8a546bcbf2999a62c3cc Mon Sep 17 00:00:00 2001 From: ALEZ Date: Wed, 15 Nov 2023 20:21:30 +0100 Subject: [PATCH] readme correction --- crates/librqbit/README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/crates/librqbit/README.md b/crates/librqbit/README.md index c10bca4..b9fa6ca 120000 --- a/crates/librqbit/README.md +++ b/crates/librqbit/README.md @@ -3,7 +3,7 @@ A torrent library 100% written in rust ## Basic example -This is a simple on how to use this library +This is a simple program on how to use this library This program will just download a simple torrent file with a Magnet link ```rust @@ -11,7 +11,7 @@ use std::error::Error; use std::path::PathBuf; use std::sync::Arc; use std::time::Duration; -use librqbit::{http_api_client, Magnet}; +use librqbit::Magnet; use librqbit::session::{AddTorrentResponse, ListOnlyResponse, ManagedTorrentState, Session}; use librqbit::spawn_utils::BlockingSpawner; use size_format::SizeFormatterBinary as SF;