diff options
| author | Mariot Tsitoara <[email protected]> | 2021-03-07 18:02:18 +0100 |
|---|---|---|
| committer | Mariot Tsitoara <[email protected]> | 2021-03-07 18:02:18 +0100 |
| commit | 56f3384d1d512988673cb363ae86435997e76180 (patch) | |
| tree | 022db797d9d9a809ce3902ba17e86b24fa7972be | |
| parent | Use concurrent downloads (diff) | |
| download | chan-downloader-56f3384d1d512988673cb363ae86435997e76180.tar.xz chan-downloader-56f3384d1d512988673cb363ae86435997e76180.zip | |
Remove useless slashes
| -rw-r--r-- | Cargo.toml | 2 | ||||
| -rw-r--r-- | README.md | 2 |
2 files changed, 2 insertions, 2 deletions
@@ -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" @@ -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"); ``` |