From 88c6084263fc4a7fcfd8939fa3e5a8d925de4ae8 Mon Sep 17 00:00:00 2001 From: Itxaso Aizpurua Date: Mon, 1 May 2023 19:33:29 +0200 Subject: [PATCH 1/2] update readme download link --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index e1d84430..66496827 100644 --- a/README.md +++ b/README.md @@ -60,7 +60,7 @@ fn main() { The above example can be run like so: ```text -$ git clone git://github.com/BurntSushi/rust-csv +$ git clone git@github.com:BurntSushi/rust-csv.git $ cd rust-csv $ cargo run --example cookbook-read-basic < examples/data/smallpop.csv ``` From 89ce9116b4b64086814b98515af4e40d40379b9a Mon Sep 17 00:00:00 2001 From: Itxaso Aizpurua Date: Mon, 1 May 2023 19:40:32 +0200 Subject: [PATCH 2/2] remove dollar signs from console comment --- README.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 66496827..03cf1cfa 100644 --- a/README.md +++ b/README.md @@ -59,10 +59,10 @@ fn main() { The above example can be run like so: -```text -$ git clone git@github.com:BurntSushi/rust-csv.git -$ cd rust-csv -$ cargo run --example cookbook-read-basic < examples/data/smallpop.csv +```console +git clone git@github.com:BurntSushi/rust-csv.git +cd rust-csv +cargo run --example cookbook-read-basic < examples/data/smallpop.csv ``` ### Example with Serde