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
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

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)