Skip to content

Commit 6054744

Browse files
committed
Fix NEWS example
BECAUSE THIS IS HARD Y'ALL
1 parent 3155f84 commit 6054744

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

NEWS.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
`filter_out()` simplifies cases where you would have previously used a `filter()` to drop rows. It is particularly useful when missing values are involved. For example, to drop rows where the `count` is zero:
1010

1111
```r
12-
df |> filter(count != 0 | !is.na(count))
12+
df |> filter(count != 0 | is.na(count))
1313

1414
df |> filter_out(count == 0)
1515
```

0 commit comments

Comments
 (0)