Skip to content

Commit 2ecbf05

Browse files
authored
resistor-color: Update documentation links with correct versions (#1589)
In `Cargo.toml` the specified versions of `int-enum` and `enum-iterator` are `0.5.0` and `1.2.0`, but the documentation links were pointed to older versions. This patch fixes that.
1 parent 75df403 commit 2ecbf05

File tree

1 file changed

+2
-2
lines changed
  • exercises/concept/resistor-color/.docs

1 file changed

+2
-2
lines changed

exercises/concept/resistor-color/.docs/hints.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@
22

33
## General
44

5-
- Use the `enum-iterator` crate to be able to iterate over enums. Check out [docs](https://docs.rs/enum-iterator/1.1.1/enum_iterator/) to find out how.
5+
- Use the `enum-iterator` crate to be able to iterate over enums. Check out [docs](https://docs.rs/enum-iterator/1.2.0/enum_iterator/) to find out how.
66

7-
- Use the `int-enum` crate to be able to convert from int to enum. See the [docs](https://docs.rs/int-enum/0.4.0/int_enum/) for details.
7+
- Use the `int-enum` crate to be able to convert from int to enum. See the [docs](https://docs.rs/int-enum/0.5.0/int_enum/) for details.
88

99
- The `Debug` trait is there because you'll likely need it.
1010

0 commit comments

Comments
 (0)