summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/ir/ty.rs2
-rwxr-xr-xsrc/lib.rs1
2 files changed, 2 insertions, 1 deletions
diff --git a/src/ir/ty.rs b/src/ir/ty.rs
index c373828a..2cb4762c 100644
--- a/src/ir/ty.rs
+++ b/src/ir/ty.rs
@@ -605,7 +605,7 @@ impl Type {
// If the type name is empty we're probably
// over-recursing to find a template parameter name
// or something like that, so just don't be too
- // noisy with it sine it causes confusion, see for
+ // noisy with it since it causes confusion, see for
// example the discussion in:
//
// https://github.com/jamesmunns/teensy3-rs/issues/9
diff --git a/src/lib.rs b/src/lib.rs
index 79385dc1..19ecb6c9 100755
--- a/src/lib.rs
+++ b/src/lib.rs
@@ -12,6 +12,7 @@
#![cfg_attr(feature = "clippy", plugin(clippy))]
#![deny(missing_docs)]
+#![deny(warnings)]
// We internally use the deprecated BindgenOptions all over the place. Once we
// remove its `pub` declaration, we can un-deprecate it and remove this pragma.