From eeabe22d342f940be32cf4e8cf95b955da050044 Mon Sep 17 00:00:00 2001 From: SignpostMarv Date: Sun, 11 Aug 2013 15:30:50 +0100 Subject: [PATCH] adding break tags in example output for slight improvement to readability --- Example.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Example.php b/Example.php index fd0474e8..5c8f6615 100644 --- a/Example.php +++ b/Example.php @@ -20,9 +20,9 @@ if($regex->test("http://github.com")) - echo "valid url"; + echo "valid url". '
'; else - echo "invalid url"; + echo "invalid url". '
'; if (preg_match($regex, 'http://github.com')) { echo 'valid url';