From c5c2e47e04cc0978557f13a90cdd67c635e946e5 Mon Sep 17 00:00:00 2001 From: Vedmaka Date: Wed, 15 Jul 2015 01:48:57 +0400 Subject: [PATCH] Fix typo in 'copy' method description --- filesystem.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/filesystem.md b/filesystem.md index 8bea0415987..7434743c6c5 100644 --- a/filesystem.md +++ b/filesystem.md @@ -107,7 +107,7 @@ The `put` method may be used to store a file on disk. You may also pass a PHP `r Storage::put('file.jpg', $resource); -The `copy` method may be used to move an existing file to a new location on the disk: +The `copy` method may be used to copy an existing file to a new location on the disk: Storage::copy('old/file1.jpg', 'new/file1.jpg');