Skip to content

Commit 42cf984

Browse files
committed
Modify doc comment
1 parent ce40815 commit 42cf984

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

composer.el

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
;;; composer.el --- Interface to PHP Composer -*- lexical-binding: t -*-
22

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

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

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

405405
;;;###autoload
406406
(defun composer-setup-managed-phar (&optional force)
407-
"Setup `composer.phar'. Force re-setup when `FORCE' option is non-NIL."
407+
"Setup `composer.phar'. Force re-setup when FORCE option is non-NIL."
408408
(interactive "p")
409409
(when (called-interactively-p 'interactive)
410410
(setq force (not (eq force 1))))

0 commit comments

Comments
 (0)