@@ -261,12 +261,12 @@ an integer (the current comment nesting)."
261
261
" Make a regular expression for methods with the given VISIBILITY.
262
262
263
263
VISIBILITY must be a string that names the visibility for a PHP
264
- method, e.g. \' public\ ' . The parameter VISIBILITY can itself also
264
+ method, e.g. ` public' . The parameter VISIBILITY can itself also
265
265
be a regular expression.
266
266
267
267
The regular expression this function returns will check for other
268
- keywords that can appear in method signatures, e.g. \' final\ ' and
269
- \' static\ ' . The regular expression will have one capture group
268
+ keywords that can appear in method signatures, e.g. ` final' and
269
+ ` static' . The regular expression will have one capture group
270
270
which will be the name of the method."
271
271
(when (stringp visibility)
272
272
(setq visibility (list visibility)))
@@ -293,8 +293,8 @@ which will be the name of the method."
293
293
'((* any) line-end))))))
294
294
295
295
(defun php-create-regexp-for-classlike (type )
296
- " Accepts a `TYPE' of a \ ' classlike\ ' object as a string, such as
297
- \ ' class\ ' or \ ' interface\ ' , and returns a regexp as a string which
296
+ " Accepts a `TYPE' of a 'classlike' object as a string, such as
297
+ 'class' or 'interface', and returns a regexp as a string which
298
298
can be used to match against definitions for that classlike."
299
299
(concat
300
300
; ; First see if 'abstract' or 'final' appear, although really these
0 commit comments