Merge pull request #3281 from thedumbsloth/function_name_fix_7.3

Edit on line no. 153. Replaced fn add_to_waitlist with fn eat_at_restaurant.
This commit is contained in:
Chris Krycho 2024-04-19 13:12:00 -06:00 committed by GitHub
commit 50149d92e0
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 1 deletions

View File

@ -150,7 +150,7 @@ and `fn add_to_waitlist` lets us call the function from
`eat_at_restaurant`</span>
Now the code will compile! To see why adding the `pub` keyword lets us use
these paths in `add_to_waitlist` with respect to the privacy rules, lets look
these paths in `eat_at_restaurant` with respect to the privacy rules, lets look
at the absolute and the relative paths.
In the absolute path, we start with `crate`, the root of our crates module