Hands-on Rust B4.0 277 advance_level is should be on impl State, not GameState

At the bottom of 277, after we add self.advance_level in tick, it says inside “GameState” to add advance_level(). This should be “State” not GameState. GameState is the trait in bracket-lib where the tick function is. advance_level is in impl State.

1 Like