From c8b5536d02a5848289b4a3c5c631c9044440d5f5 Mon Sep 17 00:00:00 2001 From: Mitsuo Shiota <48662507+mitsuoxv@users.noreply.github.com> Date: Sat, 8 Apr 2023 23:10:19 +0900 Subject: [PATCH] Fix/workflow-basics (#1391) * justify omitting the name of the second arugument * Update workflow-basics.qmd --------- Co-authored-by: Mine Cetinkaya-Rundel --- workflow-basics.qmd | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/workflow-basics.qmd b/workflow-basics.qmd index f053d93..ff6f393 100644 --- a/workflow-basics.qmd +++ b/workflow-basics.qmd @@ -180,7 +180,7 @@ Finally, hit return. seq(from = 1, to = 10) ``` -We often omit the names of the first arguments in function calls, so we can rewrite this as follows: +We often omit the names of the first several arguments in function calls, so we can rewrite this as follows: ```{r} seq(1, 10)