@@ -11,7 +11,7 @@ class VerEx {
11
11
public $ prefixes = "" ;
12
12
public $ source = "" ;
13
13
public $ suffixes = "" ;
14
- public $ modifiers = "m " ; // default to global multiline matching
14
+ public $ modifiers = "m " ; // default to global multi line matching
15
15
public $ replaceLimit = 1 ; // the limit of preg_replace when g modifier is not set
16
16
17
17
/**
@@ -268,7 +268,7 @@ public function any($value)
268
268
/**
269
269
* Add a range
270
270
*
271
- * Adds a range to our expresion ex: range(a,z) => a-z, range(a,z,0,9) => a-z0-9
271
+ * Adds a range to our expression ex: range(a,z) => a-z, range(a,z,0,9) => a-z0-9
272
272
*
273
273
* @access public
274
274
* @return VerEx
@@ -374,10 +374,10 @@ public function searchOneLine($enable = true)
374
374
/**
375
375
* Multiple
376
376
*
377
- * Adds the multiple modifier at the end of your expresion
377
+ * Adds the multiple modifier at the end of your expression
378
378
*
379
379
* @access public
380
- * @param string $value Your expresion
380
+ * @param string $value Your expression
381
381
* @return VerEx
382
382
*/
383
383
public function multiple ($ value )
@@ -401,7 +401,7 @@ public function multiple($value)
401
401
/**
402
402
* OR
403
403
*
404
- * Wraps the current expresion in an `or` with $value
404
+ * Wraps the current expression in an `or` with $value
405
405
*
406
406
* @access public
407
407
* @param string $value new expression
@@ -488,8 +488,8 @@ public function clean($options = array())
488
488
$ this ->prefixes = $ options ['prefixes ' ];
489
489
$ this ->source = $ options ['source ' ];
490
490
$ this ->suffixes = $ options ['suffixes ' ];
491
- $ this ->modifiers = $ options ['modifiers ' ]; // default to global multiline matching
492
- $ this ->replaceLimit = $ options ['replaceLimit ' ]; // default to global multiline matching
491
+ $ this ->modifiers = $ options ['modifiers ' ]; // default to global multi line matching
492
+ $ this ->replaceLimit = $ options ['replaceLimit ' ]; // default to global multi line matching
493
493
494
494
return $ this ;
495
495
}
0 commit comments