Skip to content

Commit

Permalink
Fix typos
Browse files Browse the repository at this point in the history
  • Loading branch information
Katrin Leinweber committed Apr 8, 2019
1 parent db35526 commit d826469
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions _episodes_rmd/04-making-packages-R.Rmd
Original file line number Diff line number Diff line change
Expand Up @@ -175,7 +175,7 @@ After `Install and Restart`-ing again, looking up the documentation should work.
What exactly does `roxygen2` do? It reads lines that begin with `#'` as the function documentation for your package.
Descriptive tags are preceded with the `@` symbol. For example, `@param` has information about the input parameters for the function.

### Exporting "user-level" function
### Exporting "user-level" functions

We haven't talked about the `NAMESPACE` file yet! It belongs to the package skeleton,
and was set up by RStudio with an `exportPattern`. Any file name in `R/` that
Expand All @@ -193,7 +193,7 @@ Learn more about this from the ["R packages" book][r-pkgs-name].

### Finishing up

Please take a look at RStudio's `Files` panes now. The `/man` directory should
Please take a look at RStudio's `Files` panes now. The `man` directory should
now contain one LaTeX-like formatted `.Rd` file for each function.

In case you learned about Git already, also view the `.Rd` files in RStudio's
Expand Down

0 comments on commit d826469

Please sign in to comment.