branch: elpa/inf-clojure
commit 98b530af7c3098a2c30b9c38751c3e80c37acac4
Author: Bozhidar Batsov <[email protected]>
Commit: Bozhidar Batsov <[email protected]>
Refine a docstring
---
inf-clojure.el | 9 ++++++---
1 file changed, 6 insertions(+), 3 deletions(-)
diff --git a/inf-clojure.el b/inf-clojure.el
index 138e721..50779a2 100644
--- a/inf-clojure.el
+++ b/inf-clojure.el
@@ -139,9 +139,12 @@ The following commands are available:
#'inf-clojure-completion-at-point))
(defcustom inf-clojure-program "lein repl"
- "Either a program name or a connection cons pair consisting of a host
-and port number (e.g. (\"localhost\" . 5555)), for invoking an inferior Clojure
-in Inferior Clojure mode."
+ "The command used to start an inferior Clojure process in `inf-clojure-mode'.
+
+Alternative you can specify a TCP connection cons pair, instead
+of command, consisting of a host and port
+number (e.g. (\"localhost\" . 5555)). That's useful if you're
+often connecting to a remote REPL process."
:type '(choice (string)
(cons string integer))
:group 'inf-clojure)