Skip to content

Commit

Permalink
Fix sentence
Browse files Browse the repository at this point in the history
  • Loading branch information
ryn5 committed Dec 7, 2023
1 parent 1bcae10 commit ae6bc6f
Showing 1 changed file with 2 additions and 2 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 @@ -1451,7 +1451,7 @@ link:++https://tinkerpop.apache.org/docs/x.y.z/dev/provider/#difference-step++[`
[[discard-step]]
=== Discard Step
The `discard()`-step (*filter*) filters all objects from a traversal stream. It is especially useful for to traversals
The `discard()`-step (*filter*) filters all objects from a traversal stream. It is especially useful for traversals
that are executed remotely where returning results is not useful and the traversal is only meant to generate
side-effects. Choosing not to return results saves in serialization and network costs as the objects are filtered on
the remote end and not returned to the client side. Typically, this step does not need to be used directly and is
Expand Down Expand Up @@ -3163,7 +3163,7 @@ link:++https://tinkerpop.apache.org/javadocs/x.y.z/core/org/apache/tinkerpop/gre
[[none-step]]
=== None Step
The `none()`-step (*filter*) filters all objects from a traversal stream. It is especially useful for to traversals
The `none()`-step (*filter*) filters all objects from a traversal stream. It is especially useful for traversals
that are executed remotely where returning results is not useful and the traversal is only meant to generate
side-effects. Choosing not to return results saves in serialization and network costs as the objects are filtered on
the remote end and not returned to the client side. Typically, this step does not need to be used directly and is
Expand Down

0 comments on commit ae6bc6f

Please sign in to comment.