[04/31] tinkerpop git commit: Fixed typo CTR

2018-02-14 Thread spmallette
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/d288c53b
Tree: http://git-wip-us.apache.org/repos/asf/tinkerpop/tree/d288c53b
Diff: http://git-wip-us.apache.org/repos/asf/tinkerpop/diff/d288c53b

Branch: refs/heads/TINKERPOP-1857
Commit: d288c53bf83bba5bdde32684838f54425568d689
Parents: 395cdef
Author: Robert Dale 
Authored: Tue Feb 13 13:12:54 2018 -0500
Committer: Robert Dale 
Committed: Tue Feb 13 13:12:54 2018 -0500

--
 docs/src/reference/gremlin-applications.asciidoc   | 2 +-
 .../apache/tinkerpop/gremlin/jsr223/console/RemoteAcceptor.java| 2 +-
 .../org/apache/tinkerpop/gremlin/groovy/plugin/RemoteAcceptor.java | 2 +-
 3 files changed, 3 insertions(+), 3 deletions(-)
--


http://git-wip-us.apache.org/repos/asf/tinkerpop/blob/d288c53b/docs/src/reference/gremlin-applications.asciidoc
--
diff --git a/docs/src/reference/gremlin-applications.asciidoc 
b/docs/src/reference/gremlin-applications.asciidoc
index 92bfef7..4e4f190 100644
--- a/docs/src/reference/gremlin-applications.asciidoc
+++ b/docs/src/reference/gremlin-applications.asciidoc
@@ -517,7 +517,7 @@ script = """
 <1> This configuration file specifies that results should be deserialized back 
into an `Object` in the console with
 the caveat being that the server and console both know how to serialize and 
deserialize the result to be returned.
 <2> There are now two configured remote connections.  The one marked by an 
asterisk is the one that was just created
-and denotes the current one that `:sumbit` will react to.
+and denotes the current one that `:submit` will react to.
 <3> When the script is executed again, the `class` is no longer shown to be a 
`java.lang.String`.  It is instead a `java.util.HashMap`.
 <4> The last result of a remote script is always stored in the reserved 
variable `result`, which allows access to
 the `Result` and by virtue of that, the `Map` itself.

http://git-wip-us.apache.org/repos/asf/tinkerpop/blob/d288c53b/gremlin-core/src/main/java/org/apache/tinkerpop/gremlin/jsr223/console/RemoteAcceptor.java
--
diff --git 
a/gremlin-core/src/main/java/org/apache/tinkerpop/gremlin/jsr223/console/RemoteAcceptor.java
 
b/gremlin-core/src/main/java/org/apache/tinkerpop/gremlin/jsr223/console/RemoteAcceptor.java
index 9571b2c..c1a8c91 100644
--- 
a/gremlin-core/src/main/java/org/apache/tinkerpop/gremlin/jsr223/console/RemoteAcceptor.java
+++ 
b/gremlin-core/src/main/java/org/apache/tinkerpop/gremlin/jsr223/console/RemoteAcceptor.java
@@ -71,7 +71,7 @@ public interface RemoteAcceptor extends Closeable {
  * set to {@code false}.
  * 
  * A {@code RemoteAcceptor} should only return {@code true} for this 
method if it expects that all activities it
- * supports are executed through the {@code :sumbit} command. If the users 
interaction with the remote requires
+ * supports are executed through the {@code :submit} command. If the users 
interaction with the remote requires
  * working with both local and remote evaluation at the same time, it is 
likely best to keep this method return
  * {@code false}. A good example of this type of plugin would be the Gephi 
Plugin which uses {@code :remote config}
  * to configure a local {@code TraversalSource} to be used and expects 
calls to {@code :submit} for the same body

http://git-wip-us.apache.org/repos/asf/tinkerpop/blob/d288c53b/gremlin-groovy/src/main/java/org/apache/tinkerpop/gremlin/groovy/plugin/RemoteAcceptor.java
--
diff --git 
a/gremlin-groovy/src/main/java/org/apache/tinkerpop/gremlin/groovy/plugin/RemoteAcceptor.java
 
b/gremlin-groovy/src/main/java/org/apache/tinkerpop/gremlin/groovy/plugin/RemoteAcceptor.java
index 2bb8663..1d43d56 100644
--- 
a/gremlin-groovy/src/main/java/org/apache/tinkerpop/gremlin/groovy/plugin/RemoteAcceptor.java
+++ 
b/gremlin-groovy/src/main/java/org/apache/tinkerpop/gremlin/groovy/plugin/RemoteAcceptor.java
@@ -73,7 +73,7 @@ public interface RemoteAcceptor extends Closeable {
  * set to {@code false}.
  * 
  * A {@code RemoteAcceptor} should only return {@code true} for this 
method if it expects that all activities it
- * supports are executed through the {@code :sumbit} command. If the users 
interaction with the remote requires
+ * supports are executed through the {@code :submit} command. If the users 
interaction with the remote requires
  * working with both local and remote evaluation at the same time, it is 
likely best to keep this method return
  * {@code false}. A good example of this type of 

tinkerpop git commit: Fixed typo CTR

2018-02-13 Thread rdale
Repository: tinkerpop
Updated Branches:
  refs/heads/tp32 395cdef87 -> d288c53bf


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/d288c53b
Tree: http://git-wip-us.apache.org/repos/asf/tinkerpop/tree/d288c53b
Diff: http://git-wip-us.apache.org/repos/asf/tinkerpop/diff/d288c53b

Branch: refs/heads/tp32
Commit: d288c53bf83bba5bdde32684838f54425568d689
Parents: 395cdef
Author: Robert Dale 
Authored: Tue Feb 13 13:12:54 2018 -0500
Committer: Robert Dale 
Committed: Tue Feb 13 13:12:54 2018 -0500

--
 docs/src/reference/gremlin-applications.asciidoc   | 2 +-
 .../apache/tinkerpop/gremlin/jsr223/console/RemoteAcceptor.java| 2 +-
 .../org/apache/tinkerpop/gremlin/groovy/plugin/RemoteAcceptor.java | 2 +-
 3 files changed, 3 insertions(+), 3 deletions(-)
--


http://git-wip-us.apache.org/repos/asf/tinkerpop/blob/d288c53b/docs/src/reference/gremlin-applications.asciidoc
--
diff --git a/docs/src/reference/gremlin-applications.asciidoc 
b/docs/src/reference/gremlin-applications.asciidoc
index 92bfef7..4e4f190 100644
--- a/docs/src/reference/gremlin-applications.asciidoc
+++ b/docs/src/reference/gremlin-applications.asciidoc
@@ -517,7 +517,7 @@ script = """
 <1> This configuration file specifies that results should be deserialized back 
into an `Object` in the console with
 the caveat being that the server and console both know how to serialize and 
deserialize the result to be returned.
 <2> There are now two configured remote connections.  The one marked by an 
asterisk is the one that was just created
-and denotes the current one that `:sumbit` will react to.
+and denotes the current one that `:submit` will react to.
 <3> When the script is executed again, the `class` is no longer shown to be a 
`java.lang.String`.  It is instead a `java.util.HashMap`.
 <4> The last result of a remote script is always stored in the reserved 
variable `result`, which allows access to
 the `Result` and by virtue of that, the `Map` itself.

http://git-wip-us.apache.org/repos/asf/tinkerpop/blob/d288c53b/gremlin-core/src/main/java/org/apache/tinkerpop/gremlin/jsr223/console/RemoteAcceptor.java
--
diff --git 
a/gremlin-core/src/main/java/org/apache/tinkerpop/gremlin/jsr223/console/RemoteAcceptor.java
 
b/gremlin-core/src/main/java/org/apache/tinkerpop/gremlin/jsr223/console/RemoteAcceptor.java
index 9571b2c..c1a8c91 100644
--- 
a/gremlin-core/src/main/java/org/apache/tinkerpop/gremlin/jsr223/console/RemoteAcceptor.java
+++ 
b/gremlin-core/src/main/java/org/apache/tinkerpop/gremlin/jsr223/console/RemoteAcceptor.java
@@ -71,7 +71,7 @@ public interface RemoteAcceptor extends Closeable {
  * set to {@code false}.
  * 
  * A {@code RemoteAcceptor} should only return {@code true} for this 
method if it expects that all activities it
- * supports are executed through the {@code :sumbit} command. If the users 
interaction with the remote requires
+ * supports are executed through the {@code :submit} command. If the users 
interaction with the remote requires
  * working with both local and remote evaluation at the same time, it is 
likely best to keep this method return
  * {@code false}. A good example of this type of plugin would be the Gephi 
Plugin which uses {@code :remote config}
  * to configure a local {@code TraversalSource} to be used and expects 
calls to {@code :submit} for the same body

http://git-wip-us.apache.org/repos/asf/tinkerpop/blob/d288c53b/gremlin-groovy/src/main/java/org/apache/tinkerpop/gremlin/groovy/plugin/RemoteAcceptor.java
--
diff --git 
a/gremlin-groovy/src/main/java/org/apache/tinkerpop/gremlin/groovy/plugin/RemoteAcceptor.java
 
b/gremlin-groovy/src/main/java/org/apache/tinkerpop/gremlin/groovy/plugin/RemoteAcceptor.java
index 2bb8663..1d43d56 100644
--- 
a/gremlin-groovy/src/main/java/org/apache/tinkerpop/gremlin/groovy/plugin/RemoteAcceptor.java
+++ 
b/gremlin-groovy/src/main/java/org/apache/tinkerpop/gremlin/groovy/plugin/RemoteAcceptor.java
@@ -73,7 +73,7 @@ public interface RemoteAcceptor extends Closeable {
  * set to {@code false}.
  * 
  * A {@code RemoteAcceptor} should only return {@code true} for this 
method if it expects that all activities it
- * supports are executed through the {@code :sumbit} command. If the users 
interaction with the remote requires
+ * supports are executed through the {@code :submit} command. If the users 
interaction with the remote requires
  * working with both local and remote evaluation at the same time, it is 
likely best to keep 

[1/2] tinkerpop git commit: Fixed typo CTR

2018-02-13 Thread rdale
Repository: tinkerpop
Updated Branches:
  refs/heads/master 609840589 -> 5768bc1bc


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/d288c53b
Tree: http://git-wip-us.apache.org/repos/asf/tinkerpop/tree/d288c53b
Diff: http://git-wip-us.apache.org/repos/asf/tinkerpop/diff/d288c53b

Branch: refs/heads/master
Commit: d288c53bf83bba5bdde32684838f54425568d689
Parents: 395cdef
Author: Robert Dale 
Authored: Tue Feb 13 13:12:54 2018 -0500
Committer: Robert Dale 
Committed: Tue Feb 13 13:12:54 2018 -0500

--
 docs/src/reference/gremlin-applications.asciidoc   | 2 +-
 .../apache/tinkerpop/gremlin/jsr223/console/RemoteAcceptor.java| 2 +-
 .../org/apache/tinkerpop/gremlin/groovy/plugin/RemoteAcceptor.java | 2 +-
 3 files changed, 3 insertions(+), 3 deletions(-)
--


http://git-wip-us.apache.org/repos/asf/tinkerpop/blob/d288c53b/docs/src/reference/gremlin-applications.asciidoc
--
diff --git a/docs/src/reference/gremlin-applications.asciidoc 
b/docs/src/reference/gremlin-applications.asciidoc
index 92bfef7..4e4f190 100644
--- a/docs/src/reference/gremlin-applications.asciidoc
+++ b/docs/src/reference/gremlin-applications.asciidoc
@@ -517,7 +517,7 @@ script = """
 <1> This configuration file specifies that results should be deserialized back 
into an `Object` in the console with
 the caveat being that the server and console both know how to serialize and 
deserialize the result to be returned.
 <2> There are now two configured remote connections.  The one marked by an 
asterisk is the one that was just created
-and denotes the current one that `:sumbit` will react to.
+and denotes the current one that `:submit` will react to.
 <3> When the script is executed again, the `class` is no longer shown to be a 
`java.lang.String`.  It is instead a `java.util.HashMap`.
 <4> The last result of a remote script is always stored in the reserved 
variable `result`, which allows access to
 the `Result` and by virtue of that, the `Map` itself.

http://git-wip-us.apache.org/repos/asf/tinkerpop/blob/d288c53b/gremlin-core/src/main/java/org/apache/tinkerpop/gremlin/jsr223/console/RemoteAcceptor.java
--
diff --git 
a/gremlin-core/src/main/java/org/apache/tinkerpop/gremlin/jsr223/console/RemoteAcceptor.java
 
b/gremlin-core/src/main/java/org/apache/tinkerpop/gremlin/jsr223/console/RemoteAcceptor.java
index 9571b2c..c1a8c91 100644
--- 
a/gremlin-core/src/main/java/org/apache/tinkerpop/gremlin/jsr223/console/RemoteAcceptor.java
+++ 
b/gremlin-core/src/main/java/org/apache/tinkerpop/gremlin/jsr223/console/RemoteAcceptor.java
@@ -71,7 +71,7 @@ public interface RemoteAcceptor extends Closeable {
  * set to {@code false}.
  * 
  * A {@code RemoteAcceptor} should only return {@code true} for this 
method if it expects that all activities it
- * supports are executed through the {@code :sumbit} command. If the users 
interaction with the remote requires
+ * supports are executed through the {@code :submit} command. If the users 
interaction with the remote requires
  * working with both local and remote evaluation at the same time, it is 
likely best to keep this method return
  * {@code false}. A good example of this type of plugin would be the Gephi 
Plugin which uses {@code :remote config}
  * to configure a local {@code TraversalSource} to be used and expects 
calls to {@code :submit} for the same body

http://git-wip-us.apache.org/repos/asf/tinkerpop/blob/d288c53b/gremlin-groovy/src/main/java/org/apache/tinkerpop/gremlin/groovy/plugin/RemoteAcceptor.java
--
diff --git 
a/gremlin-groovy/src/main/java/org/apache/tinkerpop/gremlin/groovy/plugin/RemoteAcceptor.java
 
b/gremlin-groovy/src/main/java/org/apache/tinkerpop/gremlin/groovy/plugin/RemoteAcceptor.java
index 2bb8663..1d43d56 100644
--- 
a/gremlin-groovy/src/main/java/org/apache/tinkerpop/gremlin/groovy/plugin/RemoteAcceptor.java
+++ 
b/gremlin-groovy/src/main/java/org/apache/tinkerpop/gremlin/groovy/plugin/RemoteAcceptor.java
@@ -73,7 +73,7 @@ public interface RemoteAcceptor extends Closeable {
  * set to {@code false}.
  * 
  * A {@code RemoteAcceptor} should only return {@code true} for this 
method if it expects that all activities it
- * supports are executed through the {@code :sumbit} command. If the users 
interaction with the remote requires
+ * supports are executed through the {@code :submit} command. If the users 
interaction with the remote requires
  * working with both local and remote evaluation at the same time, it is 
likely best to 

[18/50] [abbrv] tinkerpop git commit: fixed typo - CTR

2016-11-22 Thread dkuppitz
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/TINKERPOP-1529-variant2
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:



[10/22] tinkerpop git commit: fixed typo - CTR

2016-11-15 Thread spmallette
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/TINKERPOP-1490
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:



[1/2] tinkerpop git commit: fixed typo - CTR

2016-11-15 Thread rdale
Repository: tinkerpop
Updated Branches:
  refs/heads/tp32 ad01fa1ef -> eaa26170c


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/tp32
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:



tinkerpop git commit: fixed typo - CTR

2016-11-15 Thread rdale
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:



[1/3] tinkerpop git commit: fixed typo - CTR

2016-11-15 Thread rdale
Repository: tinkerpop
Updated Branches:
  refs/heads/master 9fe678c5e -> 9ba6e775f


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/master
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: