Skip to content

Commit b783f74

Browse files
authored
Merge pull request #867 from xen0n/download-error-nit
Fix two missing quotes of download error message
2 parents 3ac9c52 + 4e7ef8a commit b783f74

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/rustup-utils/src/errors.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -75,14 +75,14 @@ error_chain! {
7575
path: PathBuf,
7676
} {
7777
description("could not download file")
78-
display("could not download file from '{}' to '{}", url, path.display())
78+
display("could not download file from '{}' to '{}'", url, path.display())
7979
}
8080
DownloadNotExists {
8181
url: Url,
8282
path: PathBuf,
8383
} {
8484
description("could not download file")
85-
display("could not download file from '{}' to '{}", url, path.display())
85+
display("could not download file from '{}' to '{}'", url, path.display())
8686
}
8787
InvalidUrl {
8888
url: String,

0 commit comments

Comments
 (0)