From 67b8aa96940bc4b8fd858720ce4d2002b169005e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Stevo=20Slavi=C4=87?= Date: Thu, 5 Jun 2014 14:42:14 +0200 Subject: [PATCH] Fixed a typo in javadoc This patch fixes a trivial typo in javadoc --- cascading-core/src/main/java/cascading/tuple/TupleEntry.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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.