Skip to content

Commit b41aa09

Browse files
committed
Fixed some typos
1 parent 38e78ea commit b41aa09

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

VerbalExpressions.php

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ class VerEx {
1111
public $prefixes = "";
1212
public $source = "";
1313
public $suffixes = "";
14-
public $modifiers = "m"; // default to global multiline matching
14+
public $modifiers = "m"; // default to global multi line matching
1515
public $replaceLimit = 1; // the limit of preg_replace when g modifier is not set
1616

1717
/**
@@ -268,7 +268,7 @@ public function any($value)
268268
/**
269269
* Add a range
270270
*
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
272272
*
273273
* @access public
274274
* @return VerEx
@@ -374,10 +374,10 @@ public function searchOneLine($enable = true)
374374
/**
375375
* Multiple
376376
*
377-
* Adds the multiple modifier at the end of your expresion
377+
* Adds the multiple modifier at the end of your expression
378378
*
379379
* @access public
380-
* @param string $value Your expresion
380+
* @param string $value Your expression
381381
* @return VerEx
382382
*/
383383
public function multiple($value)
@@ -401,7 +401,7 @@ public function multiple($value)
401401
/**
402402
* OR
403403
*
404-
* Wraps the current expresion in an `or` with $value
404+
* Wraps the current expression in an `or` with $value
405405
*
406406
* @access public
407407
* @param string $value new expression
@@ -488,8 +488,8 @@ public function clean($options = array())
488488
$this->prefixes = $options['prefixes'];
489489
$this->source = $options['source'];
490490
$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
493493

494494
return $this;
495495
}

0 commit comments

Comments
 (0)