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 ----