Skip to content

Commit 9c4022d

Browse files
committed
fix docs only
1 parent 515ff5b commit 9c4022d

3 files changed

Lines changed: 65 additions & 69 deletions

File tree

docs/src/dev/provider/gremlin-semantics.asciidoc

Lines changed: 15 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -632,16 +632,16 @@ incoming list traverser as string.
632632
*Arguments:*
633633
634634
* `scope` - Determines the type of traverser it operates on. Both scopes will operate on the level of individual traversers.
635-
The `global` scope will operate on individual traverser, casting all (except null) to string. The `local` scope will behave like
636-
`global` for everything except lists, where it will cast individual non-null elements inside the list into string and return a
635+
The `global` scope will operate on individual traverser, casting all (except `null`) to string. The `local` scope will behave like
636+
`global` for everything except lists, where it will cast individual non-`null` elements inside the list into string and return a
637637
list of string instead.
638638
639639
Null values from the incoming traverser are not processed and remain as null when returned.
640640
641641
*Exceptions*
642642
None
643643
644-
See: link:https://github.com/apache/tinkerpop/tree/x.y.z/gremlin-core/src/main/java/org/apache/tinkerpop/gremlin/process/traversal/step/map/AsStringStep.java[source],
644+
See: link:https://github.com/apache/tinkerpop/tree/x.y.z/gremlin-core/src/main/java/org/apache/tinkerpop/gremlin/process/traversal/step/map/AsStringGlobalStep.java[source],
645645
link:https://tinkerpop.apache.org/docs/x.y.z/reference/#asString-step[reference]
646646
647647
[[call-step]]
@@ -763,7 +763,7 @@ will cause exceptions to be thrown.
763763
764764
See: link:https://github.com/apache/tinkerpop/tree/x.y.z/gremlin-core/src/main/java/org/apache/tinkerpop/gremlin/process/traversal/step/map/CombineStep.java[source],
765765
link:https://tinkerpop.apache.org/docs/x.y.z/reference/#combine-step[reference],
766-
link:https://tinkerpop.apache.org/docs/x.y.z/reference/#merge-step[merge() reference],
766+
link:https://tinkerpop.apache.org/docs/x.y.z/reference/#merge-step[merge() reference]
767767
768768
[[concat-step]]
769769
=== concat()
@@ -1061,7 +1061,7 @@ Null values from the incoming traverser are not processed and remain as null whe
10611061
* For `Scope.global` or parameterless function calls, if the incoming traverser is a non-String value then an `IllegalArgumentException` will be thrown.
10621062
* For `Scope.local`, if the incoming traverser is not a string or a list of strings then an `IllegalArgumentException` will be thrown.
10631063
1064-
See: link:https://github.com/apache/tinkerpop/tree/x.y.z/gremlin-core/src/main/java/org/apache/tinkerpop/gremlin/process/traversal/step/map/LengthStep.java[source],
1064+
See: link:https://github.com/apache/tinkerpop/tree/x.y.z/gremlin-core/src/main/java/org/apache/tinkerpop/gremlin/process/traversal/step/map/LengthGlobalStep.java[source],
10651065
link:https://tinkerpop.apache.org/docs/x.y.z/reference/#length-step[reference]
10661066
10671067
[[intersect-step]]
@@ -1122,9 +1122,9 @@ None
11221122
11231123
*Considerations:*
11241124
1125-
Every element in the list (except null) is converted to a String. Null values are ignored. The delimiter is inserted
1125+
Every element in the list (except `null`) is converted to a String. Null values are ignored. The delimiter is inserted
11261126
between neighboring elements to form the final result. This step only applies to list types which means that
1127-
non-iterable types (including null) will cause exceptions to be thrown.
1127+
non-iterable types (including `null`) will cause exceptions to be thrown.
11281128
11291129
*Exceptions*
11301130
@@ -1158,7 +1158,7 @@ Null values from the incoming traverser are not processed and remain as null whe
11581158
* For `Scope.global` or parameterless function calls, if the incoming traverser is a non-String value then an `IllegalArgumentException` will be thrown.
11591159
* For `Scope.local`, if the incoming traverser is not a string or a list of strings then an `IllegalArgumentException` will be thrown.
11601160
1161-
See: link:https://github.com/apache/tinkerpop/tree/x.y.z/gremlin-core/src/main/java/org/apache/tinkerpop/gremlin/process/traversal/step/map/LTrimStep.java[source],
1161+
See: link:https://github.com/apache/tinkerpop/tree/x.y.z/gremlin-core/src/main/java/org/apache/tinkerpop/gremlin/process/traversal/step/map/LTrimGlobalStep.java[source],
11621162
link:https://tinkerpop.apache.org/docs/x.y.z/reference/#lTrim-step[reference]
11631163
11641164
[[merge-step]]
@@ -1401,7 +1401,7 @@ Null values from the incoming traverser are not processed and remain as null whe
14011401
* For `Scope.global` or parameterless function calls, if the incoming traverser is a non-String value then an `IllegalArgumentException` will be thrown.
14021402
* For `Scope.local`, if the incoming traverser is not a string or a list of strings then an `IllegalArgumentException` will be thrown.
14031403
1404-
See: link:https://github.com/apache/tinkerpop/tree/x.y.z/gremlin-core/src/main/java/org/apache/tinkerpop/gremlin/process/traversal/step/map/ReplaceStep.java[source],
1404+
See: link:https://github.com/apache/tinkerpop/tree/x.y.z/gremlin-core/src/main/java/org/apache/tinkerpop/gremlin/process/traversal/step/map/ReplaceGlobalStep.java[source],
14051405
link:https://tinkerpop.apache.org/docs/x.y.z/reference/#replace-step[reference]
14061406
14071407
[[reverse-step]]
@@ -1456,7 +1456,7 @@ Null values from the incoming traverser are not processed and remain as null whe
14561456
* For `Scope.global` or parameterless function calls, if the incoming traverser is a non-String value then an `IllegalArgumentException` will be thrown.
14571457
* For `Scope.local`, if the incoming traverser is not a string or a list of strings then an `IllegalArgumentException` will be thrown.
14581458
1459-
See: link:https://github.com/apache/tinkerpop/tree/x.y.z/gremlin-core/src/main/java/org/apache/tinkerpop/gremlin/process/traversal/step/map/RTrimStep.java[source],
1459+
See: link:https://github.com/apache/tinkerpop/tree/x.y.z/gremlin-core/src/main/java/org/apache/tinkerpop/gremlin/process/traversal/step/map/RTrimGlobalStep.java[source],
14601460
link:https://tinkerpop.apache.org/docs/x.y.z/reference/#rTrim-step[reference]
14611461
14621462
[[split-step]]
@@ -1485,7 +1485,7 @@ Null values from the incoming traverser are not processed and remain as null whe
14851485
* For `Scope.global` or parameterless function calls, if the incoming traverser is a non-String value then an `IllegalArgumentException` will be thrown.
14861486
* For `Scope.local`, if the incoming traverser is not a string or a list of strings then an `IllegalArgumentException` will be thrown.
14871487
1488-
See: link:https://github.com/apache/tinkerpop/tree/x.y.z/gremlin-core/src/main/java/org/apache/tinkerpop/gremlin/process/traversal/step/map/SplitStep.java[source],
1488+
See: link:https://github.com/apache/tinkerpop/tree/x.y.z/gremlin-core/src/main/java/org/apache/tinkerpop/gremlin/process/traversal/step/map/SplitGlobalStep.java[source],
14891489
link:https://tinkerpop.apache.org/docs/x.y.z/reference/#split-step[reference]
14901490
14911491
[[substring-step]]
@@ -1516,7 +1516,7 @@ Null values from the incoming traverser are not processed and remain as null whe
15161516
* For `Scope.global` or parameterless function calls, if the incoming traverser is a non-String value then an `IllegalArgumentException` will be thrown.
15171517
* For `Scope.local`, if the incoming traverser is not a string or a list of strings then an `IllegalArgumentException` will be thrown.
15181518
1519-
See: link:https://github.com/apache/tinkerpop/tree/x.y.z/gremlin-core/src/main/java/org/apache/tinkerpop/gremlin/process/traversal/step/map/SubstringStep.java[source],
1519+
See: link:https://github.com/apache/tinkerpop/tree/x.y.z/gremlin-core/src/main/java/org/apache/tinkerpop/gremlin/process/traversal/step/map/SubstringGlobalStep.java[source],
15201520
link:https://tinkerpop.apache.org/docs/x.y.z/reference/#substring-step[reference]
15211521
15221522
[[toLower-step]]
@@ -1544,7 +1544,7 @@ Null values from the incoming traverser are not processed and remain as null whe
15441544
* For `Scope.global` or parameterless function calls, if the incoming traverser is a non-String value then an `IllegalArgumentException` will be thrown.
15451545
* For `Scope.local`, if the incoming traverser is not a string or a list of strings then an `IllegalArgumentException` will be thrown.
15461546
1547-
See: link:https://github.com/apache/tinkerpop/tree/x.y.z/gremlin-core/src/main/java/org/apache/tinkerpop/gremlin/process/traversal/step/map/ToLowerStep.java[source],
1547+
See: link:https://github.com/apache/tinkerpop/tree/x.y.z/gremlin-core/src/main/java/org/apache/tinkerpop/gremlin/process/traversal/step/map/ToLowerGlobalStep.java[source],
15481548
link:https://tinkerpop.apache.org/docs/x.y.z/reference/#toLower-step[reference]
15491549
15501550
[[toUpper-step]]
@@ -1572,7 +1572,7 @@ Null values from the incoming traverser are not processed and remain as null whe
15721572
* For `Scope.global` or parameterless function calls, if the incoming traverser is a non-String value then an `IllegalArgumentException` will be thrown.
15731573
* For `Scope.local`, if the incoming traverser is not a string or a list of strings then an `IllegalArgumentException` will be thrown.
15741574
1575-
See: link:https://github.com/apache/tinkerpop/tree/x.y.z/gremlin-core/src/main/java/org/apache/tinkerpop/gremlin/process/traversal/step/map/ToUpperStep.java[source],
1575+
See: link:https://github.com/apache/tinkerpop/tree/x.y.z/gremlin-core/src/main/java/org/apache/tinkerpop/gremlin/process/traversal/step/map/ToUpperGlobalStep.java[source],
15761576
link:https://tinkerpop.apache.org/docs/x.y.z/reference/#toUpper-step[reference]
15771577
15781578
[[trim-step]]
@@ -1599,5 +1599,5 @@ Null values from the incoming traverser are not processed and remain as null whe
15991599
* For `Scope.global` or parameterless function calls, if the incoming traverser is a non-String value then an `IllegalArgumentException` will be thrown.
16001600
* For `Scope.local`, if the incoming traverser is not a string or a list of strings then an `IllegalArgumentException` will be thrown.
16011601
1602-
See: link:https://github.com/apache/tinkerpop/tree/x.y.z/gremlin-core/src/main/java/org/apache/tinkerpop/gremlin/process/traversal/step/map/TrimStep.java[source],
1602+
See: link:https://github.com/apache/tinkerpop/tree/x.y.z/gremlin-core/src/main/java/org/apache/tinkerpop/gremlin/process/traversal/step/map/TrimGlobalStep.java[source],
16031603
link:https://tinkerpop.apache.org/docs/x.y.z/reference/#trim-step[reference]

0 commit comments

Comments
 (0)