From 7e1fd90d6601090a8ffd8018e322281d266c3239 Mon Sep 17 00:00:00 2001 From: Guy Korland Date: Tue, 31 Dec 2024 10:34:46 +0200 Subject: [PATCH] Update load_csv.md - fix tables --- cypher/load_csv.md | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/cypher/load_csv.md b/cypher/load_csv.md index 802c327..47c6699 100644 --- a/cypher/load_csv.md +++ b/cypher/load_csv.md @@ -33,8 +33,9 @@ In the following example we'll load the `actors.csv` file into FalkorDB. ### actors.csv -| Lee Pace | 1979 | +| || | ---------------|-----------| +| Lee Pace | 1979 | | Vin Diesel | 1967 | | Chris Pratt | 1979 | | Zoe Saldana | 1978 | @@ -54,7 +55,7 @@ In case the CSV contains a header row e.g. ### actors.csv | name | birthyear | -| ---------------|-----------| +| :--------------| :---------| | Lee Pace | 1979 | | Vin Diesel | 1967 | | Chris Pratt | 1979 | @@ -83,7 +84,7 @@ which ties actors to movies they've acted in ### acted_in.csv | actor | movie | -| ---------------|----------------| +| :--------------| :--------------| | Lee Pace | The Fall | | Vin Diesel | Fast & Furious | | Chris Pratt | Passengers |