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 eb2cc256 Inconsistent Sentence Structures (#153)
eb2cc256 is described below

commit eb2cc25631aa373b763442bfe97b9cda31e59d40
Author: Muhammad Muneeb Ur Rehman 
<[email protected]>
AuthorDate: Wed Nov 22 23:51:10 2023 +0500

    Inconsistent Sentence Structures (#153)
    
    * Inconsistent Sentence Structures
    
    Before, the sentence structure was inconsistent and redundant.
    
    Now, its easy to read and understand.
    
    * Update merge.md
---
 docs/clauses/merge.md | 8 +++++---
 1 file changed, 5 insertions(+), 3 deletions(-)

diff --git a/docs/clauses/merge.md b/docs/clauses/merge.md
index ff5f68b5..4296090f 100644
--- a/docs/clauses/merge.md
+++ b/docs/clauses/merge.md
@@ -36,7 +36,7 @@ RETURN v
 $$) as (v agtype);
 ```
 
-If there exists a vertex with the label 'Critic' the vertex will be returns. 
Otherwise, the vertex will be created and returned.
+If there exists a vertex with the label 'Critic', that vertex will be 
returned. Otherwise, the vertex will be created and returned.
 
 <table>
   <tr>
@@ -67,6 +67,8 @@ RETURN charlie
 $$) as (v agtype);
 ```
 
+If there exists a vertex with the label 'Critic', that vertex will be 
returned. Otherwise, the vertex will be created and returned.
+
 <table>
   <tr>
    <td><strong>v</strong>
@@ -82,7 +84,7 @@ $$) as (v agtype);
   </tr>
 </table>
 
-If a vertex with all the properties exists, it will be returned. Otherwise, a 
new vertex with the name 'Charlie Sheen' will be created and returned.
+If there exists a vertex with all properties, that vertex will be returned. 
Otherwise, a new vertex with the name 'Charlie Sheen' will be created and 
returned.
 
 
 ### Merge a Single Vertex Specifying Both Label and Property
@@ -98,7 +100,7 @@ RETURN michael.name, michael.bornIn
 $$) as (Name agtype, BornIn agtype);
 ```
 
-'Michael Douglas' will match the existing vertex and the vertex's `name` and 
`bornIn` properties returned.
+'Michael Douglas' will match the existing vertex and the vertex's `name` and 
`bornIn` properties will be returned.
 
 <table>
   <tr>

Reply via email to