Correction to IntDict reference for values() method

This commit is contained in:
REAS
2015-11-09 15:31:02 -08:00
parent b59d157e15
commit 63b8689d42

View File

@@ -253,7 +253,7 @@ public class IntDict {
/**
* @webref intdict:method
* @brief Return the internal array being used to store the keys
* @brief Return the internal array being used to store the values
*/
public Iterable<Integer> values() {
return new Iterable<Integer>() {