Skip to content

Commit

Permalink
Fix more butchered syntax.
Browse files Browse the repository at this point in the history
  • Loading branch information
rdvdijk committed Sep 26, 2012
1 parent d36d26d commit a1d80cc
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 @@ -300,9 +300,9 @@ Experimental:
nodes = @neo.create_nodes(5) # Create 5 empty nodes
nodes = @neo.create_nodes_threaded(5) # Create 5 empty nodes using threads
nodes = @neo.create_node_nodes([{"age" => 31, "name" => "Max"},
# Create two nodes with properties
{"age" => 24, "name" => "Alex"}) # Create two nodes with properties
nodes = @neo.create_node_nodes_threaded([{"age" => 31, "name" => "Max"},
# Create two nodes with properties threaded
{"age" => 24, "name" => "Alex"}) # Create two nodes with properties threaded
nodes = @neo.get_nodes([17,86,397,33]) # Get four nodes by their id

one_set_nodes = @neo.create_nodes(3)
Expand Down

0 comments on commit a1d80cc

Please sign in to comment.