diff --git a/src/graph_notebook/notebooks/01-Getting-Started/02-Using-Gremlin-to-Access-the-Graph.ipynb b/src/graph_notebook/notebooks/01-Getting-Started/02-Using-Gremlin-to-Access-the-Graph.ipynb index d4c02093..10686ba9 100644 --- a/src/graph_notebook/notebooks/01-Getting-Started/02-Using-Gremlin-to-Access-the-Graph.ipynb +++ b/src/graph_notebook/notebooks/01-Getting-Started/02-Using-Gremlin-to-Access-the-Graph.ipynb @@ -126,7 +126,7 @@ "g.addV('person').property(id, '2').property('name', 'vadas').property('age', 27).next()\n", "g.addV('software').property(id, '3').property('name', 'lop').property('lang', 'java').next()\n", "g.addV('person').property(id, '4').property('name', 'josh').property('age', 32).next()\n", - "g.addV('software').property(id, '5').property('name', 'ripple').property('ripple', 'java').next()\n", + "g.addV('software').property(id, '5').property('name', 'ripple').property('lang', 'java').next()\n", "g.addV('person').property(id, '6').property('name', 'peter').property('age', 35)" ] },