You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@arrow.apache.org by tu...@apache.org on 2023/01/29 17:03:49 UTC

[arrow-rs] branch master updated: Fix typo in comment (#3627)

This is an automated email from the ASF dual-hosted git repository.

tustvold pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/arrow-rs.git


The following commit(s) were added to refs/heads/master by this push:
     new e6418cbbc Fix typo in comment (#3627)
e6418cbbc is described below

commit e6418cbbcffaf855775559c4a073c01f0b38afdd
Author: Kevin Schiroo <kj...@gmail.com>
AuthorDate: Sun Jan 29 11:03:43 2023 -0600

    Fix typo in comment (#3627)
    
    Switching Janiary to January.
---
 parquet/src/record/api.rs | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/parquet/src/record/api.rs b/parquet/src/record/api.rs
index f3511c03d..49fdc3fc7 100644
--- a/parquet/src/record/api.rs
+++ b/parquet/src/record/api.rs
@@ -525,7 +525,7 @@ pub enum Field {
     Date(i32),
     /// Milliseconds from the Unix epoch, 1 January 1970.
     TimestampMillis(i64),
-    /// Microseconds from the Unix epoch, 1 Janiary 1970.
+    /// Microseconds from the Unix epoch, 1 January 1970.
     TimestampMicros(i64),
 
     // ----------------------------------------------------------------------