diff options
| author | Scott Olson <scott@solson.me> | 2016-09-11 16:45:49 -0600 |
|---|---|---|
| committer | Scott Olson <scott@solson.me> | 2016-09-11 16:45:49 -0600 |
| commit | 6b99e011626a6f73747307907cdadbc8ab9ebffd (patch) | |
| tree | fe383b24f263fbff181848d75546c812055dde45 | |
| parent | 1fca1ab0e7be574022b2d229f0a6ad9bd580d1bf (diff) | |
| download | rust-6b99e011626a6f73747307907cdadbc8ab9ebffd.tar.gz rust-6b99e011626a6f73747307907cdadbc8ab9ebffd.zip | |
Delete stray ` character in error message.
| -rw-r--r-- | src/librustc_lint/types.rs | 2 |
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) => { |
