From 1d69c31b631a028a830d75709d6eee35e18eaf64 Mon Sep 17 00:00:00 2001 From: Jorge Espinoza Date: Wed, 15 Apr 2020 02:09:45 +0000 Subject: [PATCH 1/2] Change "parameter" to "argument" It refers to the value used by the function, not the name used inside it. --- book/book.tex | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/book/book.tex b/book/book.tex index 9e0368e..4d44e89 100644 --- a/book/book.tex +++ b/book/book.tex @@ -2746,7 +2746,7 @@ \section{Exercises} \item Define a new function called \verb"do_four" that takes a function object and a value and calls the function four times, passing the value -as a parameter. There should be only +as an argument. There should be only two statements in the body of this function, not four. \end{enumerate} From ec9f4131cc42b8d7a84c47bc9529d7337fbe0105 Mon Sep 17 00:00:00 2001 From: Jorge Espinoza Date: Wed, 15 Apr 2020 02:53:00 +0000 Subject: [PATCH 2/2] Change "parameters" to "arguments" --- book/book.tex | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/book/book.tex b/book/book.tex index 4d44e89..f7a26d8 100644 --- a/book/book.tex +++ b/book/book.tex @@ -3353,7 +3353,7 @@ \section{Debugging} \index{interface} An interface is like a contract between a function and a caller. -The caller agrees to provide certain parameters and the function +The caller agrees to provide certain arguments and the function agrees to do certain work. For example, {\tt polyline} requires four arguments: {\tt t} has to be