diff --git a/arrow/src/record_batch.rs b/arrow/src/record_batch.rs index 39ef227f37cd..f1fd86794cb7 100644 --- a/arrow/src/record_batch.rs +++ b/arrow/src/record_batch.rs @@ -268,7 +268,7 @@ impl RecordBatch { /// ("a", a), /// ("b", b), /// ]); - /// + /// ``` pub fn try_from_iter(value: I) -> Result where I: IntoIterator, @@ -307,6 +307,7 @@ impl RecordBatch { /// ("a", a, false), /// ("b", b, true), /// ]); + /// ``` pub fn try_from_iter_with_nullable(value: I) -> Result where I: IntoIterator,