From 00b512a87686c847e9de758ef7275f5aacf87485 Mon Sep 17 00:00:00 2001 From: Taylor Otwell Date: Mon, 28 Nov 2011 23:15:35 -0600 Subject: [PATCH] remove typo in method comment. --- laravel/url.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/laravel/url.php b/laravel/url.php index cb2f6125..972eca4d 100644 --- a/laravel/url.php +++ b/laravel/url.php @@ -22,7 +22,7 @@ public static function base() // By removing the basename of the script, we should be left with the path // in which the framework is installed. For example, if the framework is // installed to http://localhost/laravel/public, the path we'll get from - // from this statement will be "/laravel/public". + // this statement will be "/laravel/public". $path = str_replace(basename($_SERVER['SCRIPT_NAME']), '', $_SERVER['SCRIPT_NAME']); return rtrim($protocol.$_SERVER['HTTP_HOST'].$path, '/');