Fix/workflow-basics (#1391)

* justify omitting the name of the second arugument

* Update workflow-basics.qmd

---------

Co-authored-by: Mine Cetinkaya-Rundel <cetinkaya.mine@gmail.com>
This commit is contained in:
Mitsuo Shiota
2023-04-08 23:10:19 +09:00
committed by GitHub
parent eb0cd7f962
commit c8b5536d02

View File

@@ -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)