Skip to content

Commit

Permalink
Fix spelling mistakes
Browse files Browse the repository at this point in the history
  • Loading branch information
tralph3 committed May 12, 2024
1 parent 49b8827 commit d8dabaa
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions conner.el
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@
:type 'string)

(defcustom conner-read-env-file t
"Wether to read env files before running commands.
"Whether to read env files before running commands.
If non-nil, conner will look for a `conner-env-file' in the provided
root dir and load any environment variables within, passing them to
Expand Down Expand Up @@ -250,7 +250,7 @@ Write to ROOT-DIR's `conner-file-name' by default.
If invoked with \\[universal-argument], write to ROOT-DIR's
associated local file.
This logic is inversed if `conner-default-file-behavior' is set
This logic is inverted if `conner-default-file-behavior' is set
to `local'."
(let ((conner-file (if (or
(and current-prefix-arg (eq conner-default-file-behavior 'project))
Expand Down Expand Up @@ -357,7 +357,7 @@ If PLIST-LIST is non-nil, search it instead."
(mapcar (lambda (plist) (plist-get plist :name)) conner--commands))

(defun conner--command-annotation-function (candidate)
"Get CANDIDATE's command and format for use in minibuffer annotation."
"Get CANDIDATE's command and format for use in mini buffer annotation."
(let* ((max-width (apply #'max (mapcar #'length (conner--get-command-names))))
(indent (make-string (- max-width (length candidate)) ?\s))
(command (car
Expand Down Expand Up @@ -525,7 +525,7 @@ Write to ROOT-DIR's `conner-file-name' by default. If invoked
with \\[universal-argument], write to a local file associated
with ROOT-DIR.
This logic is inversed if `conner-default-file-behavior' is set
This logic is inverted if `conner-default-file-behavior' is set
to `local'."
(interactive "D")
(when command-plist
Expand All @@ -552,7 +552,7 @@ Write to ROOT-DIR's `conner-file-name' by default. If invoked
with \\[universal-argument], write to a local file associated
with ROOT-DIR.
This logic is inversed if `conner-default-file-behavior' is set
This logic is inverted if `conner-default-file-behavior' is set
to `local'."
(interactive "D")
(if (or
Expand All @@ -577,7 +577,7 @@ Command will be read from ROOT-DIR's `conner-file-name' by
default. If invoked with \\[universal-argument], read from a
local file associated with ROOT-DIR.
This logic is inversed if `conner-default-file-behavior' is set
This logic is inverted if `conner-default-file-behavior' is set
to `local'.
The user will be prompted for every optional parameter not
Expand Down Expand Up @@ -706,7 +706,7 @@ The function takes no arguments."
The command must be a list of strings consisting of the names of
the other commands you want to run.
Commands will be run sequentally, but since most command types
Commands will be run sequentially, but since most command types
are async, it won't wait for them to finish before running the
next one. If a command type (such as elispf) is synchronous,
then it must finish before calling the next command.
Expand Down

0 comments on commit d8dabaa

Please sign in to comment.