From 524a2d889d97c2fc26e7a53a15d0b9b0178ffe3a Mon Sep 17 00:00:00 2001 From: Sergio Benitez Date: Fri, 30 Dec 2016 20:06:48 -0600 Subject: [PATCH] Fix typo in build warning message. --- codegen/build.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/codegen/build.rs b/codegen/build.rs index 96a0199a..ced3f47d 100644 --- a/codegen/build.rs +++ b/codegen/build.rs @@ -66,6 +66,6 @@ fn main() { } } - printerr!("{}", Yellow.paint("Warning: Rocket was unable to check rustc compatbility.")); + printerr!("{}", Yellow.paint("Warning: Rocket was unable to check rustc compatibility.")); printerr!("{}", Yellow.paint("Build may fail due to incompatible rustc version.")); }