From 1aa256fecbe0dc69c7eec4190a42ac10e6865d3c Mon Sep 17 00:00:00 2001 From: Greg Haines Date: Thu, 6 Mar 2014 18:02:14 -0500 Subject: [PATCH] Fix typo. --- src/main/java/net/greghaines/jesque/utils/JesqueUtils.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/java/net/greghaines/jesque/utils/JesqueUtils.java b/src/main/java/net/greghaines/jesque/utils/JesqueUtils.java index db1a4b87..cbf77563 100644 --- a/src/main/java/net/greghaines/jesque/utils/JesqueUtils.java +++ b/src/main/java/net/greghaines/jesque/utils/JesqueUtils.java @@ -322,7 +322,7 @@ public static Map map(final Entry... entr * the key * @param value * the value - * @return a Map.Entry object with the give key and value + * @return a Map.Entry object with the given key and value */ public static Entry entry(final K key, final V value) { return new SimpleImmutableEntry(key, value);