You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@accumulo.apache.org by ed...@apache.org on 2015/07/26 06:59:03 UTC

accumulo git commit: ACCUMULO-2474 Fix minor errors in user manual client section.

Repository: accumulo
Updated Branches:
  refs/heads/1.7 e8df6f0f2 -> 069d19817


ACCUMULO-2474 Fix minor errors in user manual client section.

The client section of the users manual had some minor typos.

* Corrected the proxy subsection heading Prerequisites from "prequisites"
* Corrected batch writer section to addMutation(mutation) from add(mutation)


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

Branch: refs/heads/1.7
Commit: 069d198175301d04bb470ac26c62f91510cc07fe
Parents: e8df6f0
Author: Ed Coleman <de...@etcoleman.com>
Authored: Sun Jul 26 00:54:01 2015 -0400
Committer: Ed Coleman <de...@etcoleman.com>
Committed: Sun Jul 26 00:54:01 2015 -0400

----------------------------------------------------------------------
 docs/src/main/asciidoc/chapters/clients.txt | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/accumulo/blob/069d1981/docs/src/main/asciidoc/chapters/clients.txt
----------------------------------------------------------------------
diff --git a/docs/src/main/asciidoc/chapters/clients.txt b/docs/src/main/asciidoc/chapters/clients.txt
index 8d545ef..2bae4ed 100644
--- a/docs/src/main/asciidoc/chapters/clients.txt
+++ b/docs/src/main/asciidoc/chapters/clients.txt
@@ -118,7 +118,7 @@ config.setMaxMemory(10000000L); // bytes available to batchwriter for buffering
 
 BatchWriter writer = conn.createBatchWriter("table", config)
 
-writer.add(mutation);
+writer.addMutation(mutation);
 
 writer.close();
 ----
@@ -275,7 +275,7 @@ The proxy API can also be used instead of the traditional ZooKeeperInstance clas
 provide a single TCP port in which clients can be securely routed through a firewall,
 without requiring access to all tablet servers in the cluster.
 
-==== Prequisites
+==== Prerequisites
 
 The proxy server can live on any node in which the basic client API would work. That
 means it must be able to communicate with the Master, ZooKeepers, NameNode, and the