You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@tinkerpop.apache.org by ok...@apache.org on 2016/12/01 13:38:29 UTC

[2/5] tinkerpop git commit: Javadoc tweak.

Javadoc tweak.


Project: http://git-wip-us.apache.org/repos/asf/tinkerpop/repo
Commit: http://git-wip-us.apache.org/repos/asf/tinkerpop/commit/84a82fb5
Tree: http://git-wip-us.apache.org/repos/asf/tinkerpop/tree/84a82fb5
Diff: http://git-wip-us.apache.org/repos/asf/tinkerpop/diff/84a82fb5

Branch: refs/heads/tp32
Commit: 84a82fb598807fabf3b70d35b6a48431db6f9487
Parents: cba782a
Author: Marko A. Rodriguez <ok...@gmail.com>
Authored: Tue Nov 29 09:10:49 2016 -0700
Committer: Marko A. Rodriguez <ok...@gmail.com>
Committed: Tue Nov 29 09:10:49 2016 -0700

----------------------------------------------------------------------
 .../org/apache/tinkerpop/gremlin/process/traversal/Bytecode.java | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/tinkerpop/blob/84a82fb5/gremlin-core/src/main/java/org/apache/tinkerpop/gremlin/process/traversal/Bytecode.java
----------------------------------------------------------------------
diff --git a/gremlin-core/src/main/java/org/apache/tinkerpop/gremlin/process/traversal/Bytecode.java b/gremlin-core/src/main/java/org/apache/tinkerpop/gremlin/process/traversal/Bytecode.java
index 377195f..567e282 100644
--- a/gremlin-core/src/main/java/org/apache/tinkerpop/gremlin/process/traversal/Bytecode.java
+++ b/gremlin-core/src/main/java/org/apache/tinkerpop/gremlin/process/traversal/Bytecode.java
@@ -117,9 +117,9 @@ public final class Bytecode implements Cloneable, Serializable {
     }
 
     /**
-     * Get all the BINDINGS (in a nested, recurssive manner) from all the arguments of all the instructions of this bytecode.
+     * Get all the bindings (in a nested, recursive manner) from all the arguments of all the instructions of this bytecode.
      *
-     * @return a map of string variable and object value BINDINGS
+     * @return a map of string variable and object value bindings
      */
     public Map<String, Object> getBindings() {
         final Map<String, Object> bindingsMap = new HashMap<>();