Skip to content

Commit e5dc108

Browse files
committed
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>
1 parent ebec6ba commit e5dc108

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

laravel/documentation/input.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -145,4 +145,4 @@ Sometimes you may wish to merge or replace the current input. Here's how:
145145

146146
#### Replacing the entire input array with new data:
147147

148-
Input::merge(array('doctor' => 'Bones', 'captain' => 'Kirk'));
148+
Input::replace(array('doctor' => 'Bones', 'captain' => 'Kirk'));

0 commit comments

Comments
 (0)