From d35955a0a1be55c62f3fb3aa44b592caa8e2a318 Mon Sep 17 00:00:00 2001 From: Ben Bolker Date: Mon, 22 May 2017 11:11:08 -0400 Subject: [PATCH] add missing backtick --- _episodes_rmd/02-func-R.Rmd | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/_episodes_rmd/02-func-R.Rmd b/_episodes_rmd/02-func-R.Rmd index 495796ad3..cd54443a0 100644 --- a/_episodes_rmd/02-func-R.Rmd +++ b/_episodes_rmd/02-func-R.Rmd @@ -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}