From 467741c98a192aca9b1e789a31ed3b9dfa03a9a4 Mon Sep 17 00:00:00 2001 From: Michael Chirico Date: Wed, 22 Oct 2025 10:28:42 -0700 Subject: [PATCH] not so "new" --- functions.qmd | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/functions.qmd b/functions.qmd index 6a60524..96d1eb5 100755 --- a/functions.qmd +++ b/functions.qmd @@ -16,7 +16,7 @@ permutation() ## Anonymous functions -Use the new lambda syntax: `\(x) x + 1` when writing short anonymous functions (i.e. when you define a function in an argument without giving it an explicit name). +Use the lambda syntax: `\(x) x + 1` when writing short anonymous functions (i.e. when you define a function in an argument without giving it an explicit name). ```R # Good