From b3bdab96228174d9b859824c8a40d92867e9edc5 Mon Sep 17 00:00:00 2001 From: ryan Date: Wed, 11 Apr 2012 20:09:17 +0000 Subject: [PATCH] phpdoc tweaks. Props linuxologos. fixes #19580 git-svn-id: http://svn.automattic.com/wordpress/trunk@20437 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-load.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/wp-load.php b/wp-load.php index f8113e8ce1..3e67d0790d 100644 --- a/wp-load.php +++ b/wp-load.php @@ -18,7 +18,7 @@ * @package WordPress */ -/** Define ABSPATH as this files directory */ +/** Define ABSPATH as this file's directory */ define( 'ABSPATH', dirname(__FILE__) . '/' ); error_reporting( E_CORE_ERROR | E_CORE_WARNING | E_COMPILE_ERROR | E_ERROR | E_WARNING | E_PARSE | E_USER_ERROR | E_USER_WARNING | E_RECOVERABLE_ERROR ); @@ -30,7 +30,7 @@ if ( file_exists( ABSPATH . 'wp-config.php') ) { } elseif ( file_exists( dirname(ABSPATH) . '/wp-config.php' ) && ! file_exists( dirname(ABSPATH) . '/wp-settings.php' ) ) { - /** The config file resides one level above ABSPATH but is not part of another install*/ + /** The config file resides one level above ABSPATH but is not part of another install */ require_once( dirname(ABSPATH) . '/wp-config.php' ); } else {