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)