From f575efbf2d6c75f77d9d496d59ee44efbc16b36e Mon Sep 17 00:00:00 2001 From: Taylor Otwell Date: Wed, 23 Nov 2011 23:01:13 -0600 Subject: [PATCH] fixing readme typos. --- readme.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/readme.md b/readme.md index 87add176..4d8704d5 100644 --- a/readme.md +++ b/readme.md @@ -11,7 +11,7 @@ ### Quickly Build Beautiful Applications return View::make('home.index'); } -Laravel serves as a great framework for writing everything from JSON APIs to full web applications. You can use RESTful routes and anonymous functions to quickly build beautiful applications, or use controllers to organize your growing application: +Laravel serves as a great framework for writing everything from JSON APIs to full web applications. You can use RESTful routes and anonymous functions to quickly build beautiful applications, or use controllers to organize your creation: class Home_Controller extends Controller { @@ -24,7 +24,7 @@ ### Quickly Build Beautiful Applications ### Wonderfully Expressive Syntax -Redirect to a named route and flash something to the session: +Laravel strives to provide intuitive, expressive syntax. Code should be immediately readable and understandable. Need to redirect to a named route and flash something to the session? Here's how: return Redirect::to_profile()->with('message', 'Welcome Back!'); @@ -68,6 +68,6 @@ ### Hassle Free Sessions and Caching $users = Cache::driver('memcached')->get('users'); -### Ready To Learn More? +### There's so much more to learn: Check out the [official documentation](http://laravel.com). \ No newline at end of file