Skip to content

Commit

Permalink
add missing backtick
Browse files Browse the repository at this point in the history
  • Loading branch information
bbolker committed May 22, 2017
1 parent ad95d46 commit 199a1af
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion _episodes_rmd/02-func-R.Rmd
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,7 @@ Real-life functions will usually be larger than the ones shown here--typically h
> e.g. `x <- c("A", "B", "C")` creates a vector `x` with three elements.
> Furthermore, we can extend that vector again using `c`, e.g. `y <- c(x, "D")` creates a vector `y` with four elements.
> Write a function called `fence` that takes two vectors as arguments, called
> original` and `wrapper`, and returns a new vector that has the wrapper vector
> `original` and `wrapper`, and returns a new vector that has the wrapper vector
> at the beginning and end of the original:
>
> ```{r, echo=-1}
Expand Down

0 comments on commit 199a1af

Please sign in to comment.