Skip to content

Commit

Permalink
[docs] Fix indentation in quickstart #685 (#687)
Browse files Browse the repository at this point in the history
Update README.md
  • Loading branch information
michaelvlach authored Aug 23, 2023
1 parent 74f5704 commit b4d3dfa
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -41,8 +41,8 @@ db.exec_mut(&QueryBuilder::insert().nodes().aliases("users").query())?;
#[derive(Debug, UserValue)]
struct User { db_id: Option<DbId>, name: String, }
let users = vec![User { db_id: None, name: "Alice".to_string(), },
User { db_id: None, name: "Bob".to_string(), },
User { db_id: None, name: "John".to_string(), }];
User { db_id: None, name: "Bob".to_string(), },
User { db_id: None, name: "John".to_string(), }];

let users_ids = db.exec_mut(&QueryBuilder::insert().nodes().values(&users).query())?;

Expand Down

0 comments on commit b4d3dfa

Please sign in to comment.