From commits-return-1680-archive-asf-public=cust-asf.ponee.io@parquet.apache.org Mon Oct 14 18:43:02 2019 Return-Path: X-Original-To: archive-asf-public@cust-asf.ponee.io Delivered-To: archive-asf-public@cust-asf.ponee.io Received: from mail.apache.org (hermes.apache.org [207.244.88.153]) by mx-eu-01.ponee.io (Postfix) with SMTP id B9311180648 for ; Mon, 14 Oct 2019 20:43:01 +0200 (CEST) Received: (qmail 80892 invoked by uid 500); 14 Oct 2019 18:43:01 -0000 Mailing-List: contact commits-help@parquet.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@parquet.apache.org Delivered-To: mailing list commits@parquet.apache.org Received: (qmail 80879 invoked by uid 99); 14 Oct 2019 18:43:01 -0000 Received: from ec2-52-202-80-70.compute-1.amazonaws.com (HELO gitbox.apache.org) (52.202.80.70) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 14 Oct 2019 18:43:01 +0000 Received: by gitbox.apache.org (ASF Mail Server at gitbox.apache.org, from userid 33) id 83F5C80504; Mon, 14 Oct 2019 18:43:00 +0000 (UTC) Date: Mon, 14 Oct 2019 18:43:00 +0000 To: "commits@parquet.apache.org" Subject: [parquet-mr] branch master updated: PARQUET-0000: Fix typo (#666) MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit Message-ID: <157107858042.16535.4601277025481230380@gitbox.apache.org> From: fokko@apache.org X-Git-Host: gitbox.apache.org X-Git-Repo: parquet-mr X-Git-Refname: refs/heads/master X-Git-Reftype: branch X-Git-Oldrev: 10f57a3779264ba222288defd1472d66ac2ae135 X-Git-Newrev: 52a502ebbf8a5525ea09d98fd75be7ccff08501c X-Git-Rev: 52a502ebbf8a5525ea09d98fd75be7ccff08501c X-Git-NotificationType: ref_changed_plus_diff X-Git-Multimail-Version: 1.5.dev Auto-Submitted: auto-generated This is an automated email from the ASF dual-hosted git repository. fokko pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/parquet-mr.git The following commit(s) were added to refs/heads/master by this push: new 52a502e PARQUET-0000: Fix typo (#666) 52a502e is described below commit 52a502ebbf8a5525ea09d98fd75be7ccff08501c Author: The Alchemist AuthorDate: Mon Oct 14 14:42:54 2019 -0400 PARQUET-0000: Fix typo (#666) --- .../src/main/java/org/apache/parquet/proto/ProtoSchemaConverter.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/parquet-protobuf/src/main/java/org/apache/parquet/proto/ProtoSchemaConverter.java b/parquet-protobuf/src/main/java/org/apache/parquet/proto/ProtoSchemaConverter.java index db5be14..b8c2545 100644 --- a/parquet-protobuf/src/main/java/org/apache/parquet/proto/ProtoSchemaConverter.java +++ b/parquet-protobuf/src/main/java/org/apache/parquet/proto/ProtoSchemaConverter.java @@ -54,7 +54,7 @@ public class ProtoSchemaConverter { } /** - * Instanciate a schema converter to get the parquet schema corresponding to protobuf classes. + * Instantiate a schema converter to get the parquet schema corresponding to protobuf classes. * @param parquetSpecsCompliant If set to false, the parquet schema generated will be using the old * schema style (prior to PARQUET-968) to provide backward-compatibility * but which does not use LIST and MAP wrappers around collections as required