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 <spencerdeinum@gmail.com>
This commit is contained in:
Spencer Deinum 2012-08-09 15:44:34 -04:00
parent ebec6ba8e0
commit e5dc10840a
1 changed files with 1 additions and 1 deletions

View File

@ -145,4 +145,4 @@ #### Merging new data into the current input:
#### Replacing the entire input array with new data:
Input::merge(array('doctor' => 'Bones', 'captain' => 'Kirk'));
Input::replace(array('doctor' => 'Bones', 'captain' => 'Kirk'));