From 7b934dfecba5b211a70ca2f4c25d5c07fb92d3c6 Mon Sep 17 00:00:00 2001
From: Jeffrey Phillips Freeman <jeffrey.freeman@syncleus.com>
Date: Sun, 24 Sep 2017 01:47:37 -0400
Subject: [PATCH] docs: fixed some typos in the readme code example.

---
 README.md | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/README.md b/README.md
index 509213e4..8582c8c1 100644
--- a/README.md
+++ b/README.md
@@ -247,7 +247,7 @@ public void testAnnotatedTyping() {
 
   Person julia = fg.addFramedVertex(Person.class);
   julia.setName("Julia");
-  julia.addKnows(p1)
+  julia.addKnows(jeff);
 
   Person juliaAgain = fg.traverse((g) -> g.V().has("name", "Julia")).next(Person.class);
   Person jeffAgain = juliaAgain.getKnowsPeople().get(0);
-- 
GitLab