small typo referencing wrong object (#686)
Line 571 should reference word, the column name in df, not words, the vector.
This commit is contained in:
committed by
Hadley Wickham
parent
5d1a4b57ba
commit
c63f496ed9
@@ -579,7 +579,7 @@ df <- tibble(
|
|||||||
i = seq_along(word)
|
i = seq_along(word)
|
||||||
)
|
)
|
||||||
df %>%
|
df %>%
|
||||||
filter(str_detect(words, "x$"))
|
filter(str_detect(word, "x$"))
|
||||||
```
|
```
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user