update: answer reference in "type-conversions"

This commit is contained in:
Somoku
2022-08-29 15:52:39 +08:00
parent e7b4b0215f
commit 679bc95397
7 changed files with 19 additions and 7 deletions

View File

@ -103,3 +103,5 @@ fn main() {
println!("Success!");
}
```
> You can find the solutions [here](https://github.com/sunface/rust-by-practice/blob/master/solutions/type-conversions/as.md)(under the solutions path), but only use it when you need it

View File

@ -168,4 +168,6 @@ fn main() {
println!("Success!");
}
```
```
> You can find the solutions [here](https://github.com/sunface/rust-by-practice/blob/master/solutions/type-conversions/from-into.md)(under the solutions path), but only use it when you need it

View File

@ -162,4 +162,6 @@ fn main() {
// literal
assert_eq!(b"Rust", &[82, 117, 115, 116]);
}
```
```
> You can find the solutions [here](https://github.com/sunface/rust-by-practice/blob/master/solutions/type-conversions/others.md)(under the solutions path), but only use it when you need it