From f064b5df6aa154a46ba67e540b25edebf734a599 Mon Sep 17 00:00:00 2001 From: Finbar Good Date: Wed, 14 Feb 2024 16:38:36 +0000 Subject: [PATCH] Fix typos --- modules/ROOT/pages/patterns/shortest-paths.adoc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/ROOT/pages/patterns/shortest-paths.adoc b/modules/ROOT/pages/patterns/shortest-paths.adoc index 3387c8957..b57985631 100644 --- a/modules/ROOT/pages/patterns/shortest-paths.adoc +++ b/modules/ROOT/pages/patterns/shortest-paths.adoc @@ -56,7 +56,7 @@ RETURN length(p) AS result ---- [TIP] -Note that this and the following examples in this section use a quantified relationship `-[:LINK]-+`, which is composed of a relationship pattern `-[:LINK]-` and a postfix quantifier `+`. The relationship pattern has no node patterns as it is only concerned with following relationships with type `LINK`, and will otherwise traverse any node along the way. There is no arrowhead on the relationship pattern, allowing the pattern to match relationships going in either directions. This represents the fact that trains can go in both directions along the `LINK`s between Stations. The `+` quantifier means that one or more relationships should be matched. For more information, see xref:patterns/reference.adoc#quantified-relationships[Syntax and semantics - quantified relationships]. +Note that this and the following examples in this section use a quantified relationship `-[:LINK]-+`, which is composed of a relationship pattern `-[:LINK]-` and a postfix quantifier `+`. The relationship pattern has no node patterns as it is only concerned with following relationships with type `LINK`, and will otherwise traverse any node along the way. There is no arrowhead `<` or `>` on the relationship pattern, allowing the pattern to match relationships going in either direction. This represents the fact that trains can go in both directions along the `LINK` relationships between Stations. The `+` quantifier means that one or more relationships should be matched. For more information, see xref:patterns/reference.adoc#quantified-relationships[Syntax and semantics - quantified relationships]. .Result [role="queryresult",options="header,footer",cols="m"]