You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@tinkerpop.apache.org by sp...@apache.org on 2018/02/14 20:34:26 UTC

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

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 <ro...@gmail.com>
Authored: Tue Feb 13 13:12:54 2018 -0500
Committer: Robert Dale <ro...@gmail.com>
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}.
      * <p/>
      * 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}.
      * <p/>
      * 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