This is an automated email from the ASF dual-hosted git repository.
jgemignani pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/age.git
The following commit(s) were added to refs/heads/master by this push:
new acab46b Fixed a typo in README (#436)
acab46b is described below
commit acab46b833541cf2e2f42419d17c145ded33942d
Author: Vaibhav Sharma <[email protected]>
AuthorDate: Thu Dec 29 23:15:52 2022 +0530
Fixed a typo in README (#436)
---
README.md | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/README.md b/README.md
index b673ad0..a57f855 100644
--- a/README.md
+++ b/README.md
@@ -254,7 +254,7 @@ You can use the following to create an edge, for example,
between two nodes.
```bash
SELECT *
FROM cypher('graph_name', $$
- MATCH (a:lable), (b:lable)
+ MATCH (a:label), (b:label)
WHERE a.property = 'Node A' AND b.property = 'Node B'
CREATE (a)-[e:RELTYPE]->(b)
RETURN e