From 82472e3b7b4c5ac6b00525cead29ade7f21201e8 Mon Sep 17 00:00:00 2001 From: anatoly Date: Sun, 25 Oct 2015 14:41:24 -0400 Subject: [PATCH] [dev.clj]: docs for reset and go --- dev/dev.clj | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/dev/dev.clj b/dev/dev.clj index f5cc801..c3d79aa 100644 --- a/dev/dev.clj +++ b/dev/dev.clj @@ -31,13 +31,13 @@ (tn/refresh-all)) (defn go - "starts all defstate.s" + "starts all states defined by defstate" [] (start) :ready) (defn reset - "stops all defstates, reloads modified source files, and restarts defstates" + "stops all states defined by defstate, reloads modified source files, and restarts the states" [] (stop) (tn/refresh :after 'dev/go))