Skip to content

Commit 02bb760

Browse files
committed
Fix doc comments
1 parent 4f990bf commit 02bb760

File tree

1 file changed

+4
-5
lines changed

1 file changed

+4
-5
lines changed

phpstan.el

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -58,9 +58,8 @@
5858

5959

6060
;; Variables:
61-
6261
(defgroup phpstan nil
63-
"Interaface to PHPStan"
62+
"Interaface to PHPStan."
6463
:tag "PHPStan"
6564
:prefix "phpstan-"
6665
:group 'tools
@@ -229,7 +228,7 @@ NIL
229228
(php-project-get-root-dir)))))
230229

231230
(defun phpstan-get-config-file ()
232-
"Return path to phpstan configure file or `NIL'."
231+
"Return path to phpstan configure file or NIL."
233232
(if phpstan-config-file
234233
(if (and (consp phpstan-config-file)
235234
(eq 'root (car phpstan-config-file)))
@@ -252,7 +251,7 @@ NIL
252251
phpstan-autoload-file)))
253252

254253
(defun phpstan-normalize-path (source-original &optional source)
255-
"Return normalized source file path to pass by `SOURCE-ORIGINAL' OR `SOURCE'.
254+
"Return normalized source file path to pass by SOURCE-ORIGINAL or SOURCE.
256255
257256
If neither `phpstan-replace-path-prefix' nor executable docker is set,
258257
it returns the value of `SOURCE' as it is."
@@ -272,7 +271,7 @@ it returns the value of `SOURCE' as it is."
272271
(or source source-original))))
273272

274273
(defun phpstan-get-level ()
275-
"Return path to phpstan configure file or `NIL'."
274+
"Return path to phpstan configure file or NIL."
276275
(cond
277276
((null phpstan-level) nil)
278277
((integerp phpstan-level) (int-to-string phpstan-level))

0 commit comments

Comments
 (0)