Browse Source

Minor comment and path changes.

Robert Sworder 15 years ago
parent
commit
fb3a1928d3

+ 1 - 1
lib/Cake/Console/Command/ConsoleShell.php

@@ -330,7 +330,7 @@ class ConsoleShell extends Shell {
 	}
 
 /**
- * Reloads the routes configuration from config/routes.php, and compiles
+ * Reloads the routes configuration from app/Config/routes.php, and compiles
  * all routes found
  *
  * @return boolean True if config reload was a success, otherwise false

+ 1 - 1
lib/Cake/Console/Templates/default/views/home.ctp

@@ -46,7 +46,7 @@ endif;
 		echo '<span class=\"notice\">';
 			echo __d('cake_dev', 'Your database configuration file is NOT present.');
 			echo '<br/>';
-			echo __d('cake_dev', 'Rename Config/database.php.default to Config/database.php');
+			echo __d('cake_dev', 'Rename APP/Config/database.php.default to APP/Config/database.php');
 		echo '</span>';
 	endif;
 ?>

+ 1 - 1
lib/Cake/Routing/Router.php

@@ -473,7 +473,7 @@ class Router {
 	}
 
 /**
- * Parses given URL string.  Returns 'routing' parametets for that url.
+ * Parses given URL string.  Returns 'routing' parameters for that url.
  *
  * @param string $url URL to be parsed
  * @return array Parsed elements from URL

+ 1 - 1
lib/Cake/View/Pages/home.ctp

@@ -71,7 +71,7 @@ endif;
 			echo '<span class="notice">';
 				echo __d('cake_dev', 'Your database configuration file is NOT present.');
 				echo '<br/>';
-				echo __d('cake_dev', 'Rename Config/database.php.default to Config/database.php');
+				echo __d('cake_dev', 'Rename APP/Config/database.php.default to APP/Config/database.php');
 			echo '</span>';
 		endif;
 	?>