Browse Source

fix conflicts.

Taylor Otwell 12 years ago
parent
commit
749948bc9d
2 changed files with 3 additions and 3 deletions
  1. 2 2
      laravel/documentation/input.md
  2. 1 1
      laravel/documentation/views/html.md

+ 2 - 2
laravel/documentation/input.md

@@ -145,10 +145,10 @@ Sometimes you may wish to merge or replace the current input. Here's how:
 
 
 #### Replacing the entire input array with new data:
 #### Replacing the entire input array with new data:
 
 
-	Input::merge(array('doctor' => 'Bones', 'captain' => 'Kirk'));
+	Input::replace(array('doctor' => 'Bones', 'captain' => 'Kirk'));
 
 
 ## Clearing Input
 ## Clearing Input
 
 
-To clear all input data for the current request, using the `clear()` method, for example:
+To clear all input data for the current request, you may use the `clear` method:
 
 
 	Input::clear();
 	Input::clear();

+ 1 - 1
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:
 ### 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));
 
 
 <a name="mail-to-links"></a>
 <a name="mail-to-links"></a>
 ## Mail-To Links
 ## Mail-To Links