emacs-elpa-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[nongnu] elpa/rubocop fb20a88 33/64: Tweak some docstrings


From: ELPA Syncer
Subject: [nongnu] elpa/rubocop fb20a88 33/64: Tweak some docstrings
Date: Wed, 11 Aug 2021 10:08:00 -0400 (EDT)

branch: elpa/rubocop
commit fb20a88fe34085480005c58409dd0141107a4d5e
Author: Bozhidar Batsov <bozhidar@batsov.com>
Commit: Bozhidar Batsov <bozhidar@batsov.com>

    Tweak some docstrings
---
 rubocop.el | 14 +++++++-------
 1 file changed, 7 insertions(+), 7 deletions(-)

diff --git a/rubocop.el b/rubocop.el
index c172c21..dbc8b8d 100644
--- a/rubocop.el
+++ b/rubocop.el
@@ -29,7 +29,7 @@
 
 ;;; Commentary:
 ;;
-;; This library allows the user to easily invoke rubocop to get feedback
+;; This library allows the user to easily invoke RuboCop to get feedback
 ;; about stylistic issues in Ruby code.
 ;;
 ;;; Code:
@@ -93,26 +93,26 @@ Alternatively prompt user for directory."
 
 ;;;###autoload
 (defun rubocop-check-project ()
-  "Run on current project."
+  "Run check on current project."
   (interactive)
   (rubocop-check-directory (rubocop-project-root)))
 
 ;;;###autoload
 (defun rubocop-autocorrect-project ()
-  "Run on current project."
+  "Run autocorrect on current project."
   (interactive)
   (rubocop-autocorrect-directory (rubocop-project-root)))
 
 ;;;###autoload
 (defun rubocop-check-directory (&optional directory)
-  "Run on DIRECTORY if present.
+  "Run check on DIRECTORY if present.
 Alternatively prompt user for directory."
   (interactive)
   (rubocop--dir-command rubocop-check-command directory))
 
 ;;;###autoload
 (defun rubocop-autocorrect-directory (&optional directory)
-  "Run on DIRECTORY if present.
+  "Run autocorrect on DIRECTORY if present.
 Alternatively prompt user for directory."
   (interactive)
   (rubocop--dir-command rubocop-autocorrect-command directory))
@@ -130,13 +130,13 @@ Alternatively prompt user for directory."
 
 ;;;###autoload
 (defun rubocop-check-current-file ()
-  "Run on current file."
+  "Run check on current file."
   (interactive)
   (rubocop--file-command rubocop-check-command))
 
 ;;;###autoload
 (defun rubocop-autocorrect-current-file ()
-  "Run on current file."
+  "Run autocorrect on current file."
   (interactive)
   (rubocop--file-command rubocop-autocorrect-command))
 



reply via email to

[Prev in Thread] Current Thread [Next in Thread]