From 8227784e114df03c92a5708bdafe8f7e0fb4904b Mon Sep 17 00:00:00 2001 From: Simon Aebersold Date: Tue, 7 Aug 2012 17:24:02 +0200 Subject: [PATCH 1/2] Documentation Error, see /laravel/html.php line 225 for reference --- laravel/documentation/views/html.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/laravel/documentation/views/html.md b/laravel/documentation/views/html.md index d1fcae9b..4465b772 100644 --- a/laravel/documentation/views/html.md +++ b/laravel/documentation/views/html.md @@ -85,7 +85,7 @@ For example, the < symbol should be converted to its entity representation. Conv ### Generating a link to a controller action with wildcard values: - echo HTML::link_to_action('user@profile', array($username)); + echo HTML::link_to_action('user@profile', 'User Profile', array($username)); ## Mail-To Links From e5dc10840ad0a05d4b6bc9ce73737d00c2052bc0 Mon Sep 17 00:00:00 2001 From: Spencer Deinum Date: Thu, 9 Aug 2012 15:44:34 -0400 Subject: [PATCH 2/2] Fix documentation error in input.md Documentation says "Replacing the entire input" but calls Input::merge() instead of Input::replace(). Signed-off-by: Spencer Deinum --- laravel/documentation/input.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/laravel/documentation/input.md b/laravel/documentation/input.md index 14221ecd..c9272a8b 100644 --- a/laravel/documentation/input.md +++ b/laravel/documentation/input.md @@ -145,4 +145,4 @@ Sometimes you may wish to merge or replace the current input. Here's how: #### Replacing the entire input array with new data: - Input::merge(array('doctor' => 'Bones', 'captain' => 'Kirk')); \ No newline at end of file + Input::replace(array('doctor' => 'Bones', 'captain' => 'Kirk'));