Skip to content

Commit

Permalink
Merge pull request #5 from benmarwick/master
Browse files Browse the repository at this point in the history
minor typo fixes: libray -> library, knitr -> knit
  • Loading branch information
humburg committed Oct 13, 2014
2 parents ebc56dd + 0a6a83c commit 0eb8c47
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ output. This can be done either by starting an R session and executing
`knitr("example.Rmd")` or from the command line:

```
Rscript --slave -e "libray(knitr);knitr('example.Rmd')"
Rscript --slave -e "library(knitr);knit('example.Rmd')"
```
Either way this generates a Markdown file called 'example.md'. This can then be
converted into PDF and HTML files by using the configuration file 'example.pandoc'
Expand Down
2 changes: 1 addition & 1 deletion example.Rmd
Original file line number Diff line number Diff line change
Expand Up @@ -132,7 +132,7 @@ output. This can be done either by starting an R session and executing
`knitr("example.Rmd")` or from the command line:

```{.bash}
Rscript --slave -e "libray(knitr);knitr('example.Rmd')"
Rscript --slave -e "library(knitr);knit('example.Rmd')"
```
Either way this generates a Markdown file called 'example.md'. This can then be
converted into PDF and HTML files by using the configuration file 'example.pandoc'
Expand Down

0 comments on commit 0eb8c47

Please sign in to comment.