From 4c127178f1b0d44ec7f86a93a23ff12f90ea8f54 Mon Sep 17 00:00:00 2001 From: Dominik Moritz Date: Thu, 6 May 2021 19:56:01 -0700 Subject: [PATCH] Fix typo in csv/reader.rs --- arrow/src/csv/reader.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/arrow/src/csv/reader.rs b/arrow/src/csv/reader.rs index 9fafc38a09ba..00f1d7f4b688 100644 --- a/arrow/src/csv/reader.rs +++ b/arrow/src/csv/reader.rs @@ -353,7 +353,7 @@ impl Reader { } // Initialize batch_records with StringRecords so they - // can be reused accross batches + // can be reused across batches let mut batch_records = Vec::with_capacity(batch_size); batch_records.resize_with(batch_size, Default::default);