Skip to content

Commit

Permalink
Modify doc comment
Browse files Browse the repository at this point in the history
  • Loading branch information
zonuexe committed Jun 18, 2024
1 parent ce40815 commit 42cf984
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions composer.el
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
;;; composer.el --- Interface to PHP Composer -*- lexical-binding: t -*-

;; Copyright (C) 2020 Friends of Emacs-PHP development
;; Copyright (C) 2024 Friends of Emacs-PHP development

;; Author: USAMI Kenta <[email protected]>
;; Created: 5 Dec 2015
Expand Down Expand Up @@ -387,7 +387,7 @@ Require PACKAGE is package name."

;;;###autoload
(defun composer-run-vendor-bin-command (command)
"Run command `COMMAND' in `vendor/bin' of the composer project."
"Run command COMMAND in `vendor/bin' of the composer project."
(interactive (list (completing-read "Run command in vendor/bin: " (composer--get-vendor-bin-files))))
(let ((default-directory (or (composer--find-composer-root default-directory)
default-directory))
Expand All @@ -404,7 +404,7 @@ Require PACKAGE is package name."

;;;###autoload
(defun composer-setup-managed-phar (&optional force)
"Setup `composer.phar'. Force re-setup when `FORCE' option is non-NIL."
"Setup `composer.phar'. Force re-setup when FORCE option is non-NIL."
(interactive "p")
(when (called-interactively-p 'interactive)
(setq force (not (eq force 1))))
Expand Down

0 comments on commit 42cf984

Please sign in to comment.