about summary refs log tree commit diff
diff options
context:
space:
mode:
authorScott Olson <scott@solson.me>2016-09-11 16:45:49 -0600
committerScott Olson <scott@solson.me>2016-09-11 16:45:49 -0600
commit6b99e011626a6f73747307907cdadbc8ab9ebffd (patch)
treefe383b24f263fbff181848d75546c812055dde45
parent1fca1ab0e7be574022b2d229f0a6ad9bd580d1bf (diff)
downloadrust-6b99e011626a6f73747307907cdadbc8ab9ebffd.tar.gz
rust-6b99e011626a6f73747307907cdadbc8ab9ebffd.zip
Delete stray ` character in error message.
-rw-r--r--src/librustc_lint/types.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/librustc_lint/types.rs b/src/librustc_lint/types.rs
index a6049acdb10..e8d9e90456e 100644
--- a/src/librustc_lint/types.rs
+++ b/src/librustc_lint/types.rs
@@ -569,7 +569,7 @@ impl<'a, 'tcx> ImproperCTypesVisitor<'a, 'tcx> {
 
             ty::TyTuple(_) => {
                 FfiUnsafe("found Rust tuple type in foreign module; \
-                           consider using a struct instead`")
+                           consider using a struct instead")
             }
 
             ty::TyRawPtr(ref m) | ty::TyRef(_, ref m) => {