Skip to content

Commit

Permalink
Fix typo.
Browse files Browse the repository at this point in the history
  • Loading branch information
gresrun committed Mar 6, 2014
1 parent 9bb4540 commit 1aa256f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/java/net/greghaines/jesque/utils/JesqueUtils.java
Original file line number Diff line number Diff line change
Expand Up @@ -322,7 +322,7 @@ public static <K, V> Map<K, V> map(final Entry<? extends K, ? extends V>... 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 <K, V> Entry<K, V> entry(final K key, final V value) {
return new SimpleImmutableEntry<K, V>(key, value);
Expand Down

0 comments on commit 1aa256f

Please sign in to comment.