From 12f67a88364292f858222968fcb9047408f1e015 Mon Sep 17 00:00:00 2001 From: NikVolf Date: Tue, 27 Mar 2018 17:15:31 +0300 Subject: [PATCH] fix some spelling --- build/main.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build/main.rs b/build/main.rs index 8bd8526..823e2ae 100644 --- a/build/main.rs +++ b/build/main.rs @@ -49,7 +49,7 @@ impl std::fmt::Display for Error { use Error::*; match *self { Io(ref io) => write!(f, "Generic i/o error: {}", io), - FailedToCopy(ref msg) => write!(f, "{}. Did you tried to run \"cargo build\"?", msg), + FailedToCopy(ref msg) => write!(f, "{}. Have you tried to run \"cargo build\"?", msg), Decoding(ref err, ref file) => write!(f, "Decoding error ({}). Must be a valid wasm file {}. Pointed wrong file?", err, file), Encoding(ref err) => write!(f, "Encoding error ({}). Almost impossible to happen, no free disk space?", err), Optimizer => write!(f, "Optimization error due to missing export section. Pointed wrong file?"),