From 276ab2ad9bf3a23544914613c5518f2cdba9786f Mon Sep 17 00:00:00 2001 From: "abby.huang" <78209557+abby-cyber@users.noreply.github.com> Date: Thu, 28 Oct 2021 14:51:15 +0800 Subject: [PATCH] Update 7.count.md count(expr) return -->count(expr) returns --- docs-2.0/3.ngql-guide/6.functions-and-expressions/7.count.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs-2.0/3.ngql-guide/6.functions-and-expressions/7.count.md b/docs-2.0/3.ngql-guide/6.functions-and-expressions/7.count.md index 7bafb8bd4b8..f009f0c4268 100644 --- a/docs-2.0/3.ngql-guide/6.functions-and-expressions/7.count.md +++ b/docs-2.0/3.ngql-guide/6.functions-and-expressions/7.count.md @@ -14,7 +14,7 @@ count({expr | *}) - count(*) returns the number of rows (including NULL). -- count(expr) return the number of non-NULL values that meet the expression. +- count(expr) returns the number of non-NULL values that meet the expression. - `count()` and `size()` are different.