diff --git a/src/java/datafu/pig/sampling/ReservoirSample.java b/src/java/datafu/pig/sampling/ReservoirSample.java
index 3b5384c..337d9bb 100644
--- a/src/java/datafu/pig/sampling/ReservoirSample.java
+++ b/src/java/datafu/pig/sampling/ReservoirSample.java
@@ -35,9 +35,9 @@
* a uniformly random sample of a given size.
*
*
- * This is similar to {@see SimpleRandomSample}, however it is guaranteed to produce
+ * This is similar to {@link SimpleRandomSample}, however it is guaranteed to produce
* a sample of the given size. This comes at the cost of scalability.
- * {@see SimpleRandomSample} produces a sample of the desired size with likelihood of 99.99%,
+ * {@link SimpleRandomSample} produces a sample of the desired size with likelihood of 99.99%,
* while using less internal storage. ReservoirSample on the other hand uses internal storage
* with size equaling the desired sample to guarantee the exact sample size.
*
diff --git a/src/java/datafu/pig/stats/QuantileUtil.java b/src/java/datafu/pig/stats/QuantileUtil.java
index 41a117a..282735e 100644
--- a/src/java/datafu/pig/stats/QuantileUtil.java
+++ b/src/java/datafu/pig/stats/QuantileUtil.java
@@ -18,7 +18,7 @@
import java.util.ArrayList;
/**
- * Methods used by {@see Quantile}.
+ * Methods used by {@link Quantile}.
*
* @author "Matthew Hayes "
*
diff --git a/src/java/datafu/pig/util/Assert.java b/src/java/datafu/pig/util/Assert.java
index 9f0a552..707add5 100644
--- a/src/java/datafu/pig/util/Assert.java
+++ b/src/java/datafu/pig/util/Assert.java
@@ -16,17 +16,12 @@
package datafu.pig.util;
-import java.io.IOException;
-
-import org.apache.pig.FilterFunc;
-import org.apache.pig.data.Tuple;
-
/**
* Assert has been renamed to AssertUDF.
*
* This class is provided for backward compatibility.
*
- * @deprecated Use {@link AssertUDF()} instead.
+ * @deprecated Use {@link AssertUDF} instead.
*/
@Deprecated
public class Assert extends AssertUDF
diff --git a/src/java/datafu/pig/util/Coalesce.java b/src/java/datafu/pig/util/Coalesce.java
index 825455d..ac1be18 100644
--- a/src/java/datafu/pig/util/Coalesce.java
+++ b/src/java/datafu/pig/util/Coalesce.java
@@ -17,15 +17,11 @@
package datafu.pig.util;
import java.io.IOException;
-import java.util.Map;
-import java.util.Properties;
-import org.apache.pig.EvalFunc;
import org.apache.pig.data.DataType;
import org.apache.pig.data.Tuple;
import org.apache.pig.impl.logicalLayer.schema.Schema;
import org.apache.pig.impl.logicalLayer.schema.Schema.FieldSchema;
-import org.apache.pig.impl.util.UDFContext;
/**
* Returns the first non-null value from a tuple, just like {@link COALESCE} in SQL.
@@ -52,7 +48,6 @@
*/
public class Coalesce extends AliasableEvalFunc