You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@age.apache.org by hb...@apache.org on 2022/09/02 02:08:21 UTC

[age-website] branch master updated: Minor spelling updates (#80)

This is an automated email from the ASF dual-hosted git repository.

hbshin 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 900d881  Minor spelling updates (#80)
900d881 is described below

commit 900d881417c031b5054fa9f7f82a5a2ea825a2e8
Author: ssinghh <61...@users.noreply.github.com>
AuthorDate: Thu Sep 1 21:08:17 2022 -0500

    Minor spelling updates (#80)
    
    * Update agload.md
    
    * aw is corrected to as
---
 docs/intro/agload.md | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/docs/intro/agload.md b/docs/intro/agload.md
index 4ed36fb..dca43ae 100644
--- a/docs/intro/agload.md
+++ b/docs/intro/agload.md
@@ -10,7 +10,7 @@ User can load graph in two steps
 - Load Vetices in the first step
 - Load Edges in the second step
 
-**User msut create graph and labels before loading data from files**
+**User must create graph and labels before loading data from files**
 
 ## Load Graph functions 
 Following are the details about the functions to create vertices and edges from the file. 
@@ -45,7 +45,7 @@ oad_edges_from_file('<graph name>',
 ## Explanation about the CSV format
 Following is the explanation about the structure for CSV files for vertices and edges.
 
-- A CSV file for nodes shall be formatted aw following; 
+- A CSV file for nodes shall be formatted as following; 
 
 | field name | Field description                                            |
 | ---------- | ------------------------------------------------------------ |
@@ -157,4 +157,4 @@ SELECT * FROM cypher('agload_test_graph', $$MATCH(n:Country2 {iso2 : 'AT'})
     RETURN id(n), n.name, n.iso2 $$) as ("id(n)" agtype, "n.name" agtype, "n.iso2" agtype);
 
 SELECT drop_graph('agload_test_graph', true);
-```
\ No newline at end of file
+```