Skip to content

Commit

Permalink
Fix checkdoc: Error messages should *not* end with a period
Browse files Browse the repository at this point in the history
  • Loading branch information
kira-bruneau authored and bbatsov committed Oct 6, 2019
1 parent 6ef2805 commit 70d1369
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion projectile.el
Original file line number Diff line number Diff line change
Expand Up @@ -3698,7 +3698,7 @@ be string to be executed as command."
(if (fboundp command)
(funcall (symbol-function command))))
(t
(error "The value for: %s in project-type: %s was neither a function nor a string." command-type project-type)))))
(error "The value for: %s in project-type: %s was neither a function nor a string" command-type project-type)))))

(defun projectile-default-configure-command (project-type)
"Retrieve default configure command for PROJECT-TYPE."
Expand Down

0 comments on commit 70d1369

Please sign in to comment.