From f4a7bc378237456b93651b8200709c817a846713 Mon Sep 17 00:00:00 2001 From: "abby.huang" <78209557+abby-cyber@users.noreply.github.com> Date: Fri, 10 Nov 2023 16:13:15 +0800 Subject: [PATCH] Update comments.md (#2344) --- docs-2.0-en/3.ngql-guide/1.nGQL-overview/comments.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs-2.0-en/3.ngql-guide/1.nGQL-overview/comments.md b/docs-2.0-en/3.ngql-guide/1.nGQL-overview/comments.md index 42966e14653..f6421fdd6a0 100644 --- a/docs-2.0-en/3.ngql-guide/1.nGQL-overview/comments.md +++ b/docs-2.0-en/3.ngql-guide/1.nGQL-overview/comments.md @@ -10,7 +10,7 @@ This topic will describe the comments in nGQL. ## Examples ```ngql -nebula> # Do nothing in this line +nebula> # Do nothing in this line and return an error `StatementEmpty`. nebula> RETURN 1+1; # This comment continues to the end of this line. nebula> RETURN 1+1; // This comment continues to the end of this line. nebula> RETURN 1 /* This is an in-line comment. */ + 1 == 2;