You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@avro.apache.org by dk...@apache.org on 2018/11/08 17:18:15 UTC

[avro] branch master updated: Fix javadoc link

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

dkulp 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 43dbc59  Fix javadoc link
43dbc59 is described below

commit 43dbc590a0ef1d954b505b14c1f48b66f10f650a
Author: Andrew Duffy <a1...@users.noreply.github.com>
AuthorDate: Thu Nov 8 11:41:20 2018 -0500

    Fix javadoc link
    
    Currently, this links to https://avro.apache.org/docs/1.8.2/api/java/org/apache/avro/io/doc-files/parsing.html
    
    The link should actually be to https://avro.apache.org/docs/1.8.2/api/java/org/apache/avro/io/parsing/doc-files/parsing.html
---
 lang/java/avro/src/main/java/org/apache/avro/io/ResolvingDecoder.java | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/lang/java/avro/src/main/java/org/apache/avro/io/ResolvingDecoder.java b/lang/java/avro/src/main/java/org/apache/avro/io/ResolvingDecoder.java
index 073ca27..8f1f6a9 100644
--- a/lang/java/avro/src/main/java/org/apache/avro/io/ResolvingDecoder.java
+++ b/lang/java/avro/src/main/java/org/apache/avro/io/ResolvingDecoder.java
@@ -37,7 +37,7 @@ import org.apache.avro.util.Utf8;
  * clients handle fields that appear to be coming out of order, this class
  * defines the method {@link #readFieldOrder}.
  *
- * <p>See the <a href="doc-files/parsing.html">parser documentation</a> for
+ * <p>See the <a href="parsing/doc-files/parsing.html">parser documentation</a> for
  *  information on how this works.
  */
 public class ResolvingDecoder extends ValidatingDecoder {