From e4fb7fa91a66968956eeeac96c3bd37600529730 Mon Sep 17 00:00:00 2001 From: Gem Lamont <106068376+gem-neo4j@users.noreply.github.com> Date: Mon, 26 Feb 2024 16:23:20 +0100 Subject: [PATCH] Apply suggestions from code review Co-authored-by: Richard Sill <156673635+rsill-neo4j@users.noreply.github.com> --- modules/ROOT/pages/syntax/comments.adoc | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/modules/ROOT/pages/syntax/comments.adoc b/modules/ROOT/pages/syntax/comments.adoc index 9db8cfd1a..138654aef 100644 --- a/modules/ROOT/pages/syntax/comments.adoc +++ b/modules/ROOT/pages/syntax/comments.adoc @@ -6,8 +6,7 @@ This page describes how to use comments in Cypher. A single line comment begins with double slash (`//`) and continues to the end of the line. -A multi-line comment begins with a slash and asterisk (`/*`) and continues until the closing of the comment, which is done with an asterisk and a slash ('*/' -) +A multi-line comment begins with a slash and asterisk (`/*`) and continues until it ends with an asterisk and a slash ('*/'). Comments do not execute, they are for humans to read. Examples: @@ -27,8 +26,8 @@ RETURN n [source, cypher, indent=0] ---- MATCH (n) /* This is a multi line comment, -the comment is still going on this line as well -but we are closing it on this line */ +the comment continues on this line +but it ends on this line. */ RETURN n ----