aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGravatar Tom Willemsen2012-05-20 14:15:46 +0200
committerGravatar Tom Willemsen2012-05-20 14:15:46 +0200
commit18f9fb41e47da304ec2646d7895d0b01de75b743 (patch)
tree104359c623aa795fd778c6b13b792948807a0072
parent6b7f2adfa438e6c7b24e798652cf448a007c2621 (diff)
downloadgit-auto-commit-mode-18f9fb41e47da304ec2646d7895d0b01de75b743.tar.gz
git-auto-commit-mode-18f9fb41e47da304ec2646d7895d0b01de75b743.zip
Fix docs
Fix tiny typo and filling in docs.
-rw-r--r--git-auto-commit-mode.el6
1 files changed, 3 insertions, 3 deletions
diff --git a/git-auto-commit-mode.el b/git-auto-commit-mode.el
index d41deb7..76cb7ac 100644
--- a/git-auto-commit-mode.el
+++ b/git-auto-commit-mode.el
@@ -45,7 +45,7 @@
relative-file-name))
(defun git-auto-commit ()
- "Commit `buffer-file-name` to git"
+ "Commit `buffer-file-name' to git"
(let* ((filename (buffer-file-name))
(relative-filename
(git-auto-commit-relative-file-name filename)))
@@ -54,8 +54,8 @@
" && git commit -m '" relative-filename "'"))))
(define-minor-mode git-auto-commit-mode
- "Automatically commit any changes made when saving with this mode
-turned on"
+ "Automatically commit any changes made when saving with this
+mode turned on"
:lighter " ga"
(if git-auto-commit-mode
(add-hook 'after-save-hook 'git-auto-commit t t)