1
0
mirror of https://github.com/google/comprehensive-rust.git synced 2025-04-26 09:12:58 +02:00

Small formatting fix (#1866)

This is a typo, that actually @mgeisler stopped in my previous PR, I was
just not around to fix it fast enough to make it to the previous merge.
Thanks for the catch!
This commit is contained in:
Gergely Risko 2024-03-04 15:46:59 +01:00 committed by GitHub
parent e74a8b77bd
commit c763932288
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -82,7 +82,7 @@ fn main() {
- Remove the `Box` in the List definition and show the compiler error. We get
the message "recursive without indirection", because for data recursion, we
have to use indirection, a Box or reference of some kind, instead of storing
have to use indirection, a `Box` or reference of some kind, instead of storing
the value directly.
# More to Explore