Skip to content

Correct misspelled function. Fixes #181 #182

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
Jul 27, 2020
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions inf-clojure.el
Original file line number Diff line number Diff line change
Expand Up @@ -353,14 +353,14 @@ number (e.g. (\"localhost\" . 5555))."

(defcustom inf-clojure-custom-startup
nil
"Form to be used to start inf-clojure.
"Form to be used to start `inf-clojure'.
Can be a cons pair of (host . port) where host is a string and
port is an integer, or a string to startup an interpreter like
\"planck\".")

(defcustom inf-clojure-custom-repl-type
nil
"REPL type to use for inf-clojure process buffer.
"REPL type to use for `inf-clojure' process buffer.
Should be a symbol that is a key in `inf-clojure-repl-features'."
:package-version '(inf-clojure . "3.0.0")
:type '(choice (const :tag "clojure" clojure)
Expand All @@ -387,7 +387,7 @@ comments."
(concat s "\n")))
lines " ")))

(defun inf-clojure--sanitinze-command (command)
(defun inf-clojure--sanitize-command (command)
"Sanitize COMMAND for sending it to a process.
An example of things that this function does is to add a final
newline at the end of the form. Return an empty string if the
Expand Down