Skip to content

Commit

Permalink
suggestsions from @nealrichardson
Browse files Browse the repository at this point in the history
  • Loading branch information
romainfrancois committed Sep 27, 2019
1 parent 9bee8de commit 1fdcc0b
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion r/R/compression.R
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@
Codec <- R6Class("Codec", inherit = Object,
active = list(
name = function() util___Codec__name(self),
level = function() abort("Codec$level() no yet implemented")
level = function() abort("Codec$level() not yet implemented")
)
)
Codec$create <- function(type = "gzip", compression_level = NA) {
Expand Down
4 changes: 2 additions & 2 deletions r/R/parquet.R
Original file line number Diff line number Diff line change
Expand Up @@ -244,11 +244,11 @@ ParquetFileWriter$create <- function(
#' @examples
#' \donttest{
#' tf1 <- tempfile(fileext = ".parquet")
#' write_parquet(tibble::tibble(x = 1:5), tf2)
#' write_parquet(data.frame(x = 1:5), tf2)
#'
#' # using compression
#' tf2 <- tempfile(fileext = ".gz.parquet")
#' write_parquet(tibble::tibble(x = 1:5), compression = "gzip", compression_level = 5)
#' write_parquet(data.frame(x = 1:5), compression = "gzip", compression_level = 5)
#'
#' }
#' @export
Expand Down
4 changes: 2 additions & 2 deletions r/man/write_parquet.Rd

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

0 comments on commit 1fdcc0b

Please sign in to comment.