Skip to content

Commit

Permalink
Capitalise 'B'
Browse files Browse the repository at this point in the history
  • Loading branch information
thisisnic committed Mar 10, 2024
1 parent c9ba314 commit 39acb97
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion r/R/schema.R
Original file line number Diff line number Diff line change
Expand Up @@ -476,7 +476,7 @@ as.data.frame.Schema <- function(x, row.names = NULL, optional = FALSE, ...) {
#' @return A string containing a formatted representation of the schema of `obj`
#' @keywords internal
format_schema <- function(obj){
assert_is(obj, c("Dataset", "RecordbatchReader"))
assert_is(obj, c("Dataset", "RecordBatchReader"))
n_fields_out <- paste0(length(obj$schema$fields), " columns", "\n")
schema <- obj$schema$ToString(truncate = TRUE)
paste0(n_fields_out, schema)
Expand Down

0 comments on commit 39acb97

Please sign in to comment.