diff --git a/cascading-core/src/main/java/cascading/tuple/TupleEntry.java b/cascading-core/src/main/java/cascading/tuple/TupleEntry.java index 6db01c3534..150a9c8077 100644 --- a/cascading-core/src/main/java/cascading/tuple/TupleEntry.java +++ b/cascading-core/src/main/java/cascading/tuple/TupleEntry.java @@ -41,7 +41,7 @@ * If type information is provided on the Fields instance, all setters on this class will use that information to * coerce the given object to the expected type. *
- * For example, if position is is of type {@code long}, then {@code entry.setString(0, "9" )} will coerce the "9" to a + * For example, if position is of type {@code long}, then {@code entry.setString(0, "9" )} will coerce the "9" to a * long {@code 9}. Thus, {@code entry.getObject(0) == 9l}. * * No coercion is performed with the {@link #getObject(Comparable)} and {@link #getObject(int)} methods.