You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@accumulo.apache.org by ct...@apache.org on 2016/01/06 21:41:59 UTC

[3/6] accumulo git commit: ACCUMULO-4100 Fix typo in batch scanner example

ACCUMULO-4100 Fix typo in batch scanner example


Project: http://git-wip-us.apache.org/repos/asf/accumulo/repo
Commit: http://git-wip-us.apache.org/repos/asf/accumulo/commit/05811af3
Tree: http://git-wip-us.apache.org/repos/asf/accumulo/tree/05811af3
Diff: http://git-wip-us.apache.org/repos/asf/accumulo/diff/05811af3

Branch: refs/heads/master
Commit: 05811af38c3dd257400465779552603df2a13641
Parents: 288a2e1
Author: Christopher Tubbs <ct...@apache.org>
Authored: Wed Jan 6 15:35:55 2016 -0500
Committer: Christopher Tubbs <ct...@apache.org>
Committed: Wed Jan 6 15:35:55 2016 -0500

----------------------------------------------------------------------
 docs/src/main/latex/accumulo_user_manual/chapters/clients.tex | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/accumulo/blob/05811af3/docs/src/main/latex/accumulo_user_manual/chapters/clients.tex
----------------------------------------------------------------------
diff --git a/docs/src/main/latex/accumulo_user_manual/chapters/clients.tex b/docs/src/main/latex/accumulo_user_manual/chapters/clients.tex
index f41352d..e0e2889 100644
--- a/docs/src/main/latex/accumulo_user_manual/chapters/clients.tex
+++ b/docs/src/main/latex/accumulo_user_manual/chapters/clients.tex
@@ -219,7 +219,7 @@ BatchScanner bscan =
 
 bscan.setRanges(ranges);
 bscan.fetchColumnFamily(new Text("attributes"));
-for(Entry<Key,Value> entry : scan)
+for(Entry<Key,Value> entry : bscan)
     System.out.println(entry.getValue());
 \end{verbatim}\endgroup