From e8c1dbb4282168e895f7095679d8d8c55f076ecd Mon Sep 17 00:00:00 2001 From: Erik Erhardt Date: Wed, 20 Jun 2018 03:06:51 -0600 Subject: [PATCH] Added colon in select() section (#645) `num_range("x", 1:3)`:, added missing colon to match the rest of the list --- transform.Rmd | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/transform.Rmd b/transform.Rmd index 3c6564d..7adcb3e 100644 --- a/transform.Rmd +++ b/transform.Rmd @@ -273,7 +273,7 @@ There are a number of helper functions you can use within `select()`: This one matches any variables that contain repeated characters. You'll learn more about regular expressions in [strings]. -* `num_range("x", 1:3)` matches `x1`, `x2` and `x3`. +* `num_range("x", 1:3)`: matches `x1`, `x2` and `x3`. See `?select` for more details.