diff --git a/README.md b/README.md index 0d86d79..88c55e3 100644 --- a/README.md +++ b/README.md @@ -40,7 +40,7 @@ use SelvinOrtiz\Utils\Flux\Helper; // The subject string (URL) $str = 'http://www.selvinortiz.com'; -// Bulding the pattern (Fluently) +// Building the pattern (Fluently) $flux = Flux::getInstance() ->startOfLine() ->find('http') diff --git a/etc/FluxDateExample.php b/etc/FluxDateExample.php index 8fde884..f418058 100644 --- a/etc/FluxDateExample.php +++ b/etc/FluxDateExample.php @@ -7,7 +7,7 @@ // The subject string (Date) $str = 'Monday, Jul 22, 2013'; -// Bulding the pattern (Fluently) +// Building the pattern (Fluently) $flux = Flux::getInstance() ->startOfLine() ->word() diff --git a/etc/FluxPhoneExample.php b/etc/FluxPhoneExample.php index 0b9f05d..a5097bb 100644 --- a/etc/FluxPhoneExample.php +++ b/etc/FluxPhoneExample.php @@ -7,7 +7,7 @@ // The subject string (Phone) $str = '(612) 424-0013'; -// Bulding the pattern (Fluently) +// Building the pattern (Fluently) $flux = Flux::getInstance() ->startOfLine() ->find('(') diff --git a/etc/FluxUrlExample.php b/etc/FluxUrlExample.php index c3a5fe7..810476e 100644 --- a/etc/FluxUrlExample.php +++ b/etc/FluxUrlExample.php @@ -7,7 +7,7 @@ // The subject string (URL) $str = 'http://www.selvinortiz.com'; -// Bulding the pattern (Fluently) +// Building the pattern (Fluently) $flux = Flux::getInstance() ->startOfLine() ->find('http')