From 5b207d7c647da3ea8d563b384126c68fa3d99aa5 Mon Sep 17 00:00:00 2001 From: Jonathan Fuerst Date: Fri, 24 Apr 2015 10:13:46 +0200 Subject: [PATCH] Fix spelling mistake in GremlinAPI.md --- docs/GremlinAPI.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/GremlinAPI.md b/docs/GremlinAPI.md index 7aab860..f02d221 100644 --- a/docs/GremlinAPI.md +++ b/docs/GremlinAPI.md @@ -170,7 +170,7 @@ Filter all paths to ones which, at this point, are on the given `node`. Example: ```javascript // Starting from all nodes in the graph, find the paths that follow bob. -// Results in three paths for bob (from alic, charlie and dani) +// Results in three paths for bob (from alice, charlie and dani) g.V().Out("follows").Is("bob") ```