From 9c9f588e96f835994f27e4212d70a1510fb77c96 Mon Sep 17 00:00:00 2001 From: bcleenders Date: Mon, 29 Dec 2014 00:12:37 +0100 Subject: [PATCH] Update docs Quads must end with a dot ("."), as specified in the grammar --- docs/Overview.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/Overview.md b/docs/Overview.md index f327ead..0eeb61f 100644 --- a/docs/Overview.md +++ b/docs/Overview.md @@ -53,13 +53,13 @@ Where you'll be given a `cayley>` prompt. It's expecting Gremlin/JS, but that ca New nodes and links can be added with the following command: ```bash -cayley> :a object predicate subject label +cayley> :a object predicate subject label . ``` Removing links works similarly: ```bash -cayley> :d object predicate subject label +cayley> :d object predicate subject . ``` This is great for testing, and ultimately also for scripting, but the real workhorse is the next step.