Return-Path: X-Original-To: apmail-accumulo-commits-archive@www.apache.org Delivered-To: apmail-accumulo-commits-archive@www.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id D771518317 for ; Mon, 27 Jul 2015 17:33:34 +0000 (UTC) Received: (qmail 25436 invoked by uid 500); 27 Jul 2015 17:33:31 -0000 Delivered-To: apmail-accumulo-commits-archive@accumulo.apache.org Received: (qmail 25397 invoked by uid 500); 27 Jul 2015 17:33:31 -0000 Mailing-List: contact commits-help@accumulo.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@accumulo.apache.org Delivered-To: mailing list commits@accumulo.apache.org Received: (qmail 25381 invoked by uid 99); 27 Jul 2015 17:33:31 -0000 Received: from git1-us-west.apache.org (HELO git1-us-west.apache.org) (140.211.11.23) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 27 Jul 2015 17:33:31 +0000 Received: by git1-us-west.apache.org (ASF Mail Server at git1-us-west.apache.org, from userid 33) id A41DDE038A; Mon, 27 Jul 2015 17:33:31 +0000 (UTC) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: ctubbsii@apache.org To: commits@accumulo.apache.org Date: Mon, 27 Jul 2015 17:33:31 -0000 Message-Id: X-Mailer: ASF-Git Admin Mailer Subject: [1/7] accumulo git commit: ACCUMULO-2474 Fix minor errors in user manual client section. Repository: accumulo Updated Branches: refs/heads/1.7 362255651 -> 1c6bbae1e refs/heads/master 56e60ca09 -> 21699d540 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/d55489a3 Tree: http://git-wip-us.apache.org/repos/asf/accumulo/tree/d55489a3 Diff: http://git-wip-us.apache.org/repos/asf/accumulo/diff/d55489a3 Branch: refs/heads/1.7 Commit: d55489a3c1175139629d37861a81e2d5d5663c0d Parents: 16a7bb4 Author: Ed Coleman Authored: Sat Jul 25 23:52:11 2015 -0400 Committer: Ed Coleman Committed: Sat Jul 25 23:52:11 2015 -0400 ---------------------------------------------------------------------- docs/src/main/latex/accumulo_user_manual/chapters/clients.tex | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/accumulo/blob/d55489a3/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 8f8bbdf..f41352d 100644 --- a/docs/src/main/latex/accumulo_user_manual/chapters/clients.tex +++ b/docs/src/main/latex/accumulo_user_manual/chapters/clients.tex @@ -109,7 +109,7 @@ config.setMaxMemory(10000000L); // bytes available to batchwriter for buffering BatchWriter writer = conn.createBatchWriter("table", config) -writer.add(mutation); +writer.addMutation(mutation); writer.close(); \end{verbatim}\endgroup @@ -231,7 +231,7 @@ accumulo/docs/examples/README.batch The proxy API allows the interaction with Accumulo with languages other than Java. A proxy server is provided in the codebase and a client can further be generated. -\subsection{Prequisites} +\subsection{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