Move errors7 after traits1

This commit is contained in:
Grzegorz Dziadkiewicz 2025-01-10 10:50:30 +01:00
parent 213a32b378
commit 72fbb10e2c
No known key found for this signature in database
GPG key ID: D93C27C4A6448C3D

View file

@ -721,13 +721,6 @@ can then use the `?` operator to return early.
Read more about `map_err()` in the `std::result` documentation:
https://doc.rust-lang.org/std/result/enum.Result.html#method.map_err"""
[[exercises]]
name = "errors7"
dir = "13_error_handling"
hint = """
TODO Add hint and place after traits exercise
"""
# Generics
[[exercises]]
@ -763,6 +756,13 @@ https://doc.rust-lang.org/book/ch10-02-traits.html
The `+` operator can concatenate a `String` with a `&str`."""
[[exercises]]
name = "errors7"
dir = "13_error_handling"
hint = """
More about relatio between try operator and From Trait:
https://doc.rust-lang.org/std/convert/trait.From.html#examples"""
[[exercises]]
name = "traits2"
dir = "15_traits"