You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@avro.apache.org by nk...@apache.org on 2019/07/22 09:37:17 UTC

[avro] branch master updated: Fix typo: InputStrim to InputStream (#584)

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

nkollar pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/avro.git


The following commit(s) were added to refs/heads/master by this push:
     new e8e2fcc  Fix typo: InputStrim to InputStream (#584)
e8e2fcc is described below

commit e8e2fccd931df600ebed566a6c6b39b2b7f3907b
Author: vicky17d <vi...@gmail.com>
AuthorDate: Mon Jul 22 02:37:11 2019 -0700

    Fix typo: InputStrim to InputStream (#584)
---
 lang/java/avro/src/main/java/org/apache/avro/io/DecoderFactory.java | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/lang/java/avro/src/main/java/org/apache/avro/io/DecoderFactory.java b/lang/java/avro/src/main/java/org/apache/avro/io/DecoderFactory.java
index 7b7a35c..255e56d 100644
--- a/lang/java/avro/src/main/java/org/apache/avro/io/DecoderFactory.java
+++ b/lang/java/avro/src/main/java/org/apache/avro/io/DecoderFactory.java
@@ -239,7 +239,7 @@ public class DecoderFactory {
   }
 
   /**
-   * Creates a {@link JsonDecoder} using the InputStrim provided for reading data
+   * Creates a {@link JsonDecoder} using the InputStream provided for reading data
    * that conforms to the Schema provided.
    * <p/>
    *