1
0
Fork 0
mirror of https://github.com/juce-framework/JUCE.git synced 2026-01-10 23:44:24 +00:00

Documentation typo fix.

This commit is contained in:
jules 2014-02-08 10:04:36 +00:00
parent 9820f04f85
commit af746fafa3

View file

@ -60,7 +60,7 @@ struct DefaultHashFunctions
@code
struct MyHashGenerator
{
int generateHash (MyKeyType key, int upperLimit)
int generateHash (MyKeyType key, int upperLimit) const
{
// The function must return a value 0 <= x < upperLimit
return someFunctionOfMyKeyType (key) % upperLimit;