Author: billie
Date: Fri Sep 21 19:19:07 2012
New Revision: 1388629
URL: http://svn.apache.org/viewvc?rev=1388629&view=rev
Log:
ACCUMULO-768 fixed typo in reduce arguments
Modified:
accumulo/branches/1.4/docs/src/user_manual/chapters/analytics.tex
Modified: accumulo/branches/1.4/docs/src/user_manual/chapters/analytics.tex
URL:
http://svn.apache.org/viewvc/accumulo/branches/1.4/docs/src/user_manual/chapters/analytics.tex?rev=1388629&r1=1388628&r2=1388629&view=diff
==============================================================================
--- accumulo/branches/1.4/docs/src/user_manual/chapters/analytics.tex (original)
+++ accumulo/branches/1.4/docs/src/user_manual/chapters/analytics.tex Fri Sep
21 19:19:07 2012
@@ -59,7 +59,7 @@ name does not have to be passed to the C
\begin{verbatim}
class MyReducer extends Reducer<WritableComparable, Writable, Text, Mutation> {
- public void reduce(WritableComparable key, Iterator<Text> values, Context
c) {
+ public void reduce(WritableComparable key, Iterable<Text> values, Context
c) {
Mutation m;