This is an automated email from the ASF dual-hosted git repository.
dmollitor pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/hive.git
The following commit(s) were added to refs/heads/master by this push:
new da933ad HIVE-22479: Fix typo in GenericUDF (Wanqiang Ji, reviewed by
David Mollitor)
da933ad is described below
commit da933ad4731e1c2ce13551e55d32d1faf2f0e2dc
Author: Wanqiang Ji <[email protected]>
AuthorDate: Tue Jun 9 01:07:26 2020 +0800
HIVE-22479: Fix typo in GenericUDF (Wanqiang Ji, reviewed by David Mollitor)
---
ql/src/java/org/apache/hadoop/hive/ql/udf/generic/GenericUDF.java | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/ql/src/java/org/apache/hadoop/hive/ql/udf/generic/GenericUDF.java
b/ql/src/java/org/apache/hadoop/hive/ql/udf/generic/GenericUDF.java
index c1bf325..40991a8 100644
--- a/ql/src/java/org/apache/hadoop/hive/ql/udf/generic/GenericUDF.java
+++ b/ql/src/java/org/apache/hadoop/hive/ql/udf/generic/GenericUDF.java
@@ -66,7 +66,7 @@ import org.apache.hadoop.io.LongWritable;
* variable length of arguments. 3. It can accept an infinite number of
function
* signature - for example, it's easy to write a GenericUDF that accepts
* array<int>, array<array<int>> and so on (arbitrary levels
of nesting). 4. It
- * can do short-circuit evaluations using DeferedObject.
+ * can do short-circuit evaluations using {@link DeferredObject}.
*/
@InterfaceAudience.Public
@InterfaceStability.Stable
@@ -77,8 +77,8 @@ public abstract class GenericUDF implements Closeable {
"th", "th", "th", "th", "th" };
/**
- * A Defered Object allows us to do lazy-evaluation and short-circuiting.
- * GenericUDF use DeferedObject to pass arguments.
+ * A Deferred Object allows us to do lazy-evaluation and short-circuiting.
+ * GenericUDF use {@link DeferredObject} to pass arguments.
*/
@InterfaceAudience.Public
@InterfaceStability.Stable