aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMariot Tsitoara <[email protected]>2021-03-07 18:02:18 +0100
committerMariot Tsitoara <[email protected]>2021-03-07 18:02:18 +0100
commit56f3384d1d512988673cb363ae86435997e76180 (patch)
tree022db797d9d9a809ce3902ba17e86b24fa7972be
parentUse concurrent downloads (diff)
downloadchan-downloader-56f3384d1d512988673cb363ae86435997e76180.tar.xz
chan-downloader-56f3384d1d512988673cb363ae86435997e76180.zip
Remove useless slashes
-rw-r--r--Cargo.toml2
-rw-r--r--README.md2
2 files changed, 2 insertions, 2 deletions
diff --git a/Cargo.toml b/Cargo.toml
index a8e6bf8..331d61a 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -1,7 +1,7 @@
[package]
name = "chan-downloader"
description = "CLI to download all images/webms of a 4chan thread"
-version = "0.2.0"
+version = "0.2.1"
authors = ["Mariot Tsitoara <[email protected]>"]
edition = "2018"
license = "MIT"
diff --git a/README.md b/README.md
index aa4457e..6cc5a78 100644
--- a/README.md
+++ b/README.md
@@ -61,7 +61,7 @@ Returns the board name and thread id.
```
let url = "https://boards.4chan.org/wg/thread/6872254";
let (board_name, thread_id) = chan_downloader::get_thread_infos(url);
-///
+
assert_eq!(board_name, "wg");
assert_eq!(thread_id, "6872254");
```