mirror of
https://github.com/mainmatter/100-exercises-to-learn-rust
synced 2024-12-25 21:58:26 +01:00
Fix typo.
This commit is contained in:
parent
5977b1c51b
commit
f371e4cd95
1 changed files with 1 additions and 1 deletions
|
@ -6,7 +6,7 @@ Let's go back to where our string journey started:
|
||||||
let ticket = Ticket::new("A title".into(), "A description".into(), "To-Do".into());
|
let ticket = Ticket::new("A title".into(), "A description".into(), "To-Do".into());
|
||||||
```
|
```
|
||||||
|
|
||||||
We can now know enough to start unpacking what `.into()` is doing here.
|
We now know enough to start unpacking what `.into()` is doing here.
|
||||||
|
|
||||||
## The problem
|
## The problem
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue