This is an automated email from the ASF dual-hosted git repository.
dehowef pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/age-website.git
The following commit(s) were added to refs/heads/master by this push:
new 5c9ead8c Updated docs/clauses/create.md; fixed syntax error (#162)
5c9ead8c is described below
commit 5c9ead8cff4fde497e2a3c597ea26d9bd9497a75
Author: Rahimullah Shaheen <[email protected]>
AuthorDate: Tue Jul 18 04:12:45 2023 +0500
Updated docs/clauses/create.md; fixed syntax error (#162)
---
docs/clauses/create.md | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/docs/clauses/create.md b/docs/clauses/create.md
index 013e20ad..8afe642c 100644
--- a/docs/clauses/create.md
+++ b/docs/clauses/create.md
@@ -135,7 +135,7 @@ Query
```postgresql
SELECT *
FROM cypher('graph_name', $$
- CREATE (:Person {name: 'Andres', title: 'Developer')
+ CREATE (:Person {name: 'Andres', title: 'Developer'})
$$) as (n agtype);
```