From 52831f6b3e0b2ed42357b4d32e6ca021430342cd Mon Sep 17 00:00:00 2001 From: Anatoly Date: Tue, 9 Jul 2019 09:51:44 -0400 Subject: [PATCH] [docs]: add fn "create-conn" clarification --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 7a6fd14..8e00a0c 100644 --- a/README.md +++ b/README.md @@ -91,7 +91,7 @@ Creating state is easy: (defstate conn :start (create-conn)) ``` -where the `create-conn` function is defined elsewhere, can be right above it. +where the `create-conn` function creates a connection to, say a database, and is defined elsewhere, can be right above it. In case this state needs to be cleaned / destroyed between reloads, there is also `:stop`