From 4d288dbb4352a252297f927fa4a29aaa29b322c9 Mon Sep 17 00:00:00 2001 From: Tom <91833656+tommarshall2@users.noreply.github.com> Date: Mon, 7 Oct 2024 13:35:12 +0800 Subject: [PATCH] Fix typo in functions.qmd (#234) --- functions.qmd | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/functions.qmd b/functions.qmd index 1d57fd0..a22877f 100755 --- a/functions.qmd +++ b/functions.qmd @@ -55,7 +55,7 @@ cv <- \(x) sd(x) / mean(x) Avoid using `\()` in a pipe, and remember to use informative argument names. -## Multi-line function defintions +## Multi-line function definitions There are two options if the function name and definition can't fit on a single line. In both cases, each argument goes on its own line; the difference is how deep you indent it and where you put `)` and `{`: