viirya commented on code in PR #3155:
URL: https://github.com/apache/arrow-rs/pull/3155#discussion_r1031334017


##########
arrow-array/src/builder/map_builder.rs:
##########
@@ -78,10 +111,12 @@ impl<K: ArrayBuilder, V: ArrayBuilder> MapBuilder<K, V> {
         }
     }
 
+    /// Returns the keys of the map

Review Comment:
   ```suggestion
       /// Returns the key array builder of the map
   ```



##########
arrow-array/src/builder/map_builder.rs:
##########
@@ -78,10 +111,12 @@ impl<K: ArrayBuilder, V: ArrayBuilder> MapBuilder<K, V> {
         }
     }
 
+    /// Returns the keys of the map
     pub fn keys(&mut self) -> &mut K {
         &mut self.key_builder
     }
 
+    /// Returns the values of the map

Review Comment:
   ```suggestion
       /// Returns the value array builder of the map
   ```



-- 
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