Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
On page 112, the text describes the call stack as being:
fn() → fn_b() → fn_c()
However, this is wrong. There is no function named fn() defined anywhere in the given source code.
fn()
A better way to describe the call stack at that time would be:
main() → fn_b() → fn_c()
The text was updated successfully, but these errors were encountered:
bdc6c02
Thanks, @WraithGlade!
Sorry, something went wrong.
Closes JLospinoso#78
18b52b9
No branches or pull requests
On page 112, the text describes the call stack as being:
fn() → fn_b() → fn_c()
However, this is wrong. There is no function named
fn()
defined anywhere in the given source code.A better way to describe the call stack at that time would be:
main() → fn_b() → fn_c()
The text was updated successfully, but these errors were encountered: