Auto merge of #27549 - tshepang:clarity, r=alexcrichton

This commit is contained in:
bors 2015-08-11 06:11:29 +00:00
commit f1ae605db8
1 changed files with 1 additions and 1 deletions

View File

@ -536,7 +536,7 @@ pub fn copy(from: &Path, to: &Path) -> io::Result<u64> {
use fs::{File, PathExt, set_permissions};
if !from.is_file() {
return Err(Error::new(ErrorKind::InvalidInput,
"the source path is not an existing file"))
"the source path is not an existing regular file"))
}
let mut reader = try!(File::open(from));