From 38cab5a2da3fcd702b583c0e7cb09cdace431646 Mon Sep 17 00:00:00 2001 From: andy5995 Date: Sun, 11 Nov 2018 23:21:10 -0600 Subject: [PATCH 1/2] gigasecond:change chrono crate link When I used https://docs.rs/chrono/0.4.0/chrono/, the paragraph under Duration has 3 dead links. Suggest changing this link to https://crates.io/crates/chrono where the links under the Duration section work. --- exercises/gigasecond/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/exercises/gigasecond/README.md b/exercises/gigasecond/README.md index 3dc461f9e..9637154ca 100644 --- a/exercises/gigasecond/README.md +++ b/exercises/gigasecond/README.md @@ -4,7 +4,7 @@ Calculate the moment when someone has lived for 10^9 seconds. A gigasecond is 10^9 (1,000,000,000) seconds. -If you're unsure what operations you can perform on `DateTime` take a look at the [chrono crate](https://docs.rs/chrono/0.4.0/chrono/) which is listed as a dependency in the `Cargo.toml` file for this exercise. +If you're unsure what operations you can perform on `DateTime` take a look at the [chrono crate](https://crates.io/crates/chrono) which is listed as a dependency in the `Cargo.toml` file for this exercise. ## Rust Installation From 1d2c26bff11609ee6d3f3f53b52f3eaf195eb1d3 Mon Sep 17 00:00:00 2001 From: andy5995 Date: Mon, 12 Nov 2018 15:39:15 -0600 Subject: [PATCH 2/2] .hints:change link --- exercises/gigasecond/.meta/hints.md | 2 +- exercises/gigasecond/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/exercises/gigasecond/.meta/hints.md b/exercises/gigasecond/.meta/hints.md index f8375dcdf..8abdf3097 100644 --- a/exercises/gigasecond/.meta/hints.md +++ b/exercises/gigasecond/.meta/hints.md @@ -1 +1 @@ -If you're unsure what operations you can perform on `DateTime` take a look at the [chrono crate](https://docs.rs/chrono/0.4.0/chrono/) which is listed as a dependency in the `Cargo.toml` file for this exercise. +If you're unsure what operations you can perform on `DateTime` take a look at the [chrono crate](https://docs.rs/chrono) which is listed as a dependency in the `Cargo.toml` file for this exercise. diff --git a/exercises/gigasecond/README.md b/exercises/gigasecond/README.md index 9637154ca..7b75cf3bd 100644 --- a/exercises/gigasecond/README.md +++ b/exercises/gigasecond/README.md @@ -4,7 +4,7 @@ Calculate the moment when someone has lived for 10^9 seconds. A gigasecond is 10^9 (1,000,000,000) seconds. -If you're unsure what operations you can perform on `DateTime` take a look at the [chrono crate](https://crates.io/crates/chrono) which is listed as a dependency in the `Cargo.toml` file for this exercise. +If you're unsure what operations you can perform on `DateTime` take a look at the [chrono crate](https://docs.rs/chrono) which is listed as a dependency in the `Cargo.toml` file for this exercise. ## Rust Installation