Return-Path: X-Original-To: archive-asf-public-internal@cust-asf2.ponee.io Delivered-To: archive-asf-public-internal@cust-asf2.ponee.io Received: from cust-asf.ponee.io (cust-asf.ponee.io [163.172.22.183]) by cust-asf2.ponee.io (Postfix) with ESMTP id 032E0200BC0 for ; Tue, 15 Nov 2016 13:06:48 +0100 (CET) Received: by cust-asf.ponee.io (Postfix) id 01D83160B03; Tue, 15 Nov 2016 12:06:48 +0000 (UTC) Delivered-To: archive-asf-public@cust-asf.ponee.io Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by cust-asf.ponee.io (Postfix) with SMTP id 70EC3160B02 for ; Tue, 15 Nov 2016 13:06:47 +0100 (CET) Received: (qmail 35471 invoked by uid 500); 15 Nov 2016 12:06:46 -0000 Mailing-List: contact commits-help@tinkerpop.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@tinkerpop.apache.org Delivered-To: mailing list commits@tinkerpop.apache.org Received: (qmail 35462 invoked by uid 99); 15 Nov 2016 12:06:46 -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; Tue, 15 Nov 2016 12:06:46 +0000 Received: by git1-us-west.apache.org (ASF Mail Server at git1-us-west.apache.org, from userid 33) id 2C5E8E0209; Tue, 15 Nov 2016 12:06:46 +0000 (UTC) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: rdale@apache.org To: commits@tinkerpop.apache.org Message-Id: <831e33d356644c39bd1524e8ffc02b22@git.apache.org> X-Mailer: ASF-Git Admin Mailer Subject: tinkerpop git commit: fixed typo - CTR Date: Tue, 15 Nov 2016 12:06:46 +0000 (UTC) archived-at: Tue, 15 Nov 2016 12:06:48 -0000 Repository: tinkerpop Updated Branches: refs/heads/tp31 1e554ca15 -> c20d81473 fixed typo - CTR Project: http://git-wip-us.apache.org/repos/asf/tinkerpop/repo Commit: http://git-wip-us.apache.org/repos/asf/tinkerpop/commit/c20d8147 Tree: http://git-wip-us.apache.org/repos/asf/tinkerpop/tree/c20d8147 Diff: http://git-wip-us.apache.org/repos/asf/tinkerpop/diff/c20d8147 Branch: refs/heads/tp31 Commit: c20d81473f074ed09f13f2a132047ae3b6585777 Parents: 1e554ca Author: Robert Dale Authored: Mon Nov 14 20:53:48 2016 -0500 Committer: Robert Dale Committed: Mon Nov 14 20:53:48 2016 -0500 ---------------------------------------------------------------------- docs/src/reference/the-graph.asciidoc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/tinkerpop/blob/c20d8147/docs/src/reference/the-graph.asciidoc ---------------------------------------------------------------------- diff --git a/docs/src/reference/the-graph.asciidoc b/docs/src/reference/the-graph.asciidoc index e0e59f9..e51c309 100644 --- a/docs/src/reference/the-graph.asciidoc +++ b/docs/src/reference/the-graph.asciidoc @@ -679,7 +679,7 @@ final Graph graph = TinkerFactory.createModern(); graph.io(IoCore.gryo()).writeGraph("tinkerpop-modern.kryo"); final Graph newGraph = TinkerGraph.open(); -newGraph.io(IoCore.gryo()).readGraph("tinkerpop-modern.kryo")' +newGraph.io(IoCore.gryo()).readGraph("tinkerpop-modern.kryo"); ---- If a custom configuration is required, then have the `Graph` generate a `GraphReader` or `GraphWriter` "builder" instance: