jonkeane commented on a change in pull request #11645:
URL: https://github.com/apache/arrow/pull/11645#discussion_r746095207



##########
File path: r/R/schema.R
##########
@@ -155,6 +163,11 @@ Schema <- R6Class("Schema",
 )
 Schema$create <- function(...) {
   .list <- list2(...)
+
+  if (length(.list) == 1 && is_list(.list[[1]])) {

Review comment:
       ```suggestion
     # if we were provided only a list of types or fields, use that
     if (length(.list) == 1 && is_list(.list[[1]])) {
   ```
   
   How does this sound as a remind of what our intent was here?




-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]


Reply via email to