From 338ad7881e1a388e78df573bdf1d3d7f904638d9 Mon Sep 17 00:00:00 2001 From: Jidong Xiao Date: Tue, 28 Jan 2025 13:49:34 -0500 Subject: [PATCH] adding line breaks --- lectures/07_order_notation_recursion/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lectures/07_order_notation_recursion/README.md b/lectures/07_order_notation_recursion/README.md index 84265a1..f924865 100644 --- a/lectures/07_order_notation_recursion/README.md +++ b/lectures/07_order_notation_recursion/README.md @@ -181,7 +181,7 @@ int intpow(int n, int p) { ## 7.11 The Mechanism of Recursive Function Calls -- For each recursive call (or any function call), a program creates an activation record to keep track of: +- For each recursive call (or any function call), a program creates an activation record to keep track of: – Completely separate instances of the parameters and local variables for the newly-called function. – The location in the calling function code to return to when the newly-called function is complete. (Who asked for this function to be called? Who wants the answer?)