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:
parent
5d1a4b57ba
commit
c63f496ed9
|
@ -579,7 +579,7 @@ df <- tibble(
|
|||
i = seq_along(word)
|
||||
)
|
||||
df %>%
|
||||
filter(str_detect(words, "x$"))
|
||||
filter(str_detect(word, "x$"))
|
||||
```
|
||||
|
||||
|
||||
|
|
Loading…
Reference in New Issue