From 8a8cf154c766492c99ba39c223261a3e67a0db7d Mon Sep 17 00:00:00 2001 From: Daniel Shiffman Date: Mon, 11 Mar 2013 13:59:55 -0400 Subject: [PATCH] quick comment fix for CountingStrings --- .../Advanced Data/CountingStrings/CountingStrings.pde | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/java/examples/Topics/Advanced Data/CountingStrings/CountingStrings.pde b/java/examples/Topics/Advanced Data/CountingStrings/CountingStrings.pde index d8fadcff1..fa3774fcc 100644 --- a/java/examples/Topics/Advanced Data/CountingStrings/CountingStrings.pde +++ b/java/examples/Topics/Advanced Data/CountingStrings/CountingStrings.pde @@ -2,11 +2,11 @@ * CountingString example * by Daniel Shiffman. * - * This example demonstrates how to use a StringHash to store + * This example demonstrates how to use a IntHash to store * a number associated with a String. Java HashMaps can also - * be used for this, however, this example uses the simple StringHash - * class offered by Processing's data package. - + * be used for this, however, this example uses the IntHash + * class offered by Processing's data package for simplicity + * and added functionality. */ // The next line is needed if running in JavaScript Mode with Processing.js