Skip to content

Commit 77f0bd7

Browse files
committed
chore: addressing some PR comments
1 parent e8cb862 commit 77f0bd7

File tree

1 file changed

+3
-5
lines changed

1 file changed

+3
-5
lines changed

core/src/main/java/io/substrait/expression/Expression.java

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -671,9 +671,6 @@ public <R, C extends VisitationContext, E extends Throwable> R accept(
671671
* <li>As {@code google.protobuf.Any} - see {@link UserDefinedAnyLiteral}
672672
* <li>As {@code Literal.Struct} - see {@link UserDefinedStructLiteral}
673673
* </ul>
674-
*
675-
* @see UserDefinedAnyLiteral
676-
* @see UserDefinedStructLiteral
677674
*/
678675
interface UserDefinedLiteral extends Literal {
679676
String urn();
@@ -684,7 +681,7 @@ interface UserDefinedLiteral extends Literal {
684681
}
685682

686683
/**
687-
* User-defined literal with value encoded as {@code google.protobuf.Any}.
684+
* User-defined literal with value encoded as {@link com.google.protobuf.Any}.
688685
*
689686
* <p>This encoding allows for arbitrary binary data to be stored in the literal value.
690687
*/
@@ -723,7 +720,8 @@ public <R, C extends VisitationContext, E extends Throwable> R accept(
723720
}
724721

725722
/**
726-
* User-defined literal with value encoded as {@code Literal.Struct}.
723+
* User-defined literal with value encoded as {@link
724+
* io.substrait.proto.Expression.Literal.Struct}.
727725
*
728726
* <p>This encoding uses a structured list of fields to represent the literal value.
729727
*/

0 commit comments

Comments
 (0)