Skip to content

Commit

Permalink
use better column names
Browse files Browse the repository at this point in the history
  • Loading branch information
IndrajeetPatil committed Sep 7, 2024
1 parent 25aa6f9 commit 308954c
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 5 deletions.
6 changes: 3 additions & 3 deletions R/redundant_equals_linter.R
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
#' )
#'
#' lint(
#' text = "dt[x == FALSE, y]",
#' text = "dt[is_tall == FALSE, y]",
#' linters = redundant_equals_linter()
#' )
#'
Expand All @@ -35,9 +35,9 @@
#' linters = redundant_equals_linter()
#' )
#'
#' # in data.table semantics, dt[x] is a join, dt[(x)] is a subset
#' # in `{data.table}` semantics, `dt[x]` is a join, `dt[(x)]` is a subset
#' lint(
#' text = "dt[!(x), y]",
#' text = "dt[(!is_tall), y]",
#' linters = redundant_equals_linter()
#' )
#'
Expand Down
5 changes: 3 additions & 2 deletions man/redundant_equals_linter.Rd

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit 308954c

Please sign in to comment.