MAPREDUCE-1996. API: Reducer.reduce() method detail misstatement. Contributed by Harsh J Chouraria.

git-svn-id: https://svn.apache.org/repos/asf/hadoop/mapreduce/trunk@1075213 13f79535-47bb-0310-9956-ffa450edef68
diff --git a/CHANGES.txt b/CHANGES.txt
index 4314cdb..c09dfb6 100644
--- a/CHANGES.txt
+++ b/CHANGES.txt
@@ -72,6 +72,9 @@
 
     MAPREDUCE-2311. Fix TestFairScheduler failure (schen)
 
+    MAPREDUCE-1996. API: Reducer.reduce() method detail misstatement.
+    (Harsh J Chouraria via tomwhite)
+
 Release 0.22.0 - Unreleased
 
   INCOMPATIBLE CHANGES
diff --git a/src/java/org/apache/hadoop/mapred/Reducer.java b/src/java/org/apache/hadoop/mapred/Reducer.java
index 606c7b7..d51673c 100644
--- a/src/java/org/apache/hadoop/mapred/Reducer.java
+++ b/src/java/org/apache/hadoop/mapred/Reducer.java
@@ -186,7 +186,7 @@
    *
    * <p>Applications can use the {@link Reporter} provided to report progress 
    * or just indicate that they are alive. In scenarios where the application 
-   * takes an insignificant amount of time to process individual key/value 
+   * takes a significant amount of time to process individual key/value 
    * pairs, this is crucial since the framework might assume that the task has 
    * timed-out and kill that task. The other way of avoiding this is to set 
    * <a href="{@docRoot}/../mapred-default.html#mapreduce.task.timeout">