Skip to content

Commit

Permalink
Style
Browse files Browse the repository at this point in the history
  • Loading branch information
michaelquinn32 committed Jan 1, 2022
1 parent 61e4a01 commit be19a6a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions R/summary.R
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ process_data_name <- function(object) {
no_ticks <- gsub("`", "", raw_name)
if (no_ticks %in% c(".", ".data")) {
"Piped data"
} else if(nchar(no_ticks) > 25) {
} else if (nchar(no_ticks) > 25) {
paste0(substring(no_ticks, 1, 25), "...")
} else {
no_ticks
Expand Down Expand Up @@ -86,4 +86,4 @@ get_summary_values <- function(summary_object) {
" ",
summary_object$possible_groups
)
}
}

0 comments on commit be19a6a

Please sign in to comment.