Skip to content

Commit

Permalink
Minor edits
Browse files Browse the repository at this point in the history
  • Loading branch information
ryn5 committed Dec 22, 2023
1 parent 3fb5d94 commit a9cf78e
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions docs/src/reference/the-traversal.asciidoc
Original file line number Diff line number Diff line change
Expand Up @@ -3168,8 +3168,8 @@ the supplied predicate and if none of the items pass then the traverser is passe
filtered. Empty lists are passed along but null or non-iterable traversers are filtered out.
NOTE: Prior to release 4.0.0, `none()` was a traversal discarding step primarily used by `iterate()`. This step has
since been renamed to `discard()`
NOTE: Prior to release 4.0.0, `none()` was a traversal discarding step primarily used by <<iterate-step,`iterate()`>>. This step has
since been renamed to <<discard-step,`discard()`>>
[gremlin-groovy,modern]
Expand Down
2 changes: 1 addition & 1 deletion gremlin-go/driver/anonymousTraversal.go
Original file line number Diff line number Diff line change
Expand Up @@ -208,7 +208,7 @@ type AnonymousTraversal interface {
// Min adds the min step to the GraphTraversal.
Min(args ...interface{}) *GraphTraversal
// None adds the none step to the GraphTraversal.
None(args ...interface{}) *GraphTraversal
None(args ...interface{}) *GraphTraversal
// Not adds the not step to the GraphTraversal.
Not(args ...interface{}) *GraphTraversal
// Option adds the option step to the GraphTraversal.
Expand Down

0 comments on commit a9cf78e

Please sign in to comment.