You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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.
Copy file name to clipboardExpand all lines: exercises/concept/resistor-color/.docs/hints.md
+2-2Lines changed: 2 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -2,9 +2,9 @@
2
2
3
3
## General
4
4
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.
6
6
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.
8
8
9
9
- The `Debug` trait is there because you'll likely need it.
0 commit comments